Fix .gitlab-ci.yml

This commit is contained in:
Franck STAUFFER 2020-09-02 19:17:31 +02:00
parent 9fddbc5781
commit 090f4707af
Signed by: franck.stauffer
GPG Key ID: AAF5A94045CEC261
2 changed files with 2 additions and 4 deletions

View File

@ -2,13 +2,13 @@ debian:
image: debian:stable-slim
before_script:
- apt-get -qq update
- apt-get -qq install make clang
- apt-get -qq install make gcc
script:
- make
alpine:
image: alpine:latest
before_script:
- apk add make clang linux-headers
- apk add alpine-sdk
script:
- make

View File

@ -2,8 +2,6 @@ CPPFLAGS = -D_FORTIFY_SOURCE=2 -D_DEFAULT_SOURCE
CFLAGS = $(CPPFLAGS) -std=c99 -pedantic -Wall -Wextra -Werror -Os -march=native -mtune=native -fPIE
LDFLAGS = -Wl,-z,now,-z,relro,-s,-pie
CC = clang
OBJS = obj/main.o
BIN = bin/stc