Compare commits

..

No commits in common. "ad8c37c9eaafb469076583803ebc49bef8f1364d" and "11709cc611c02a4e9140409a0e81d639522c06f1" have entirely different histories.

3 changed files with 0 additions and 39 deletions

View File

@ -1,2 +0,0 @@
CompileFlags:
Add: -ferror-limit=0

View File

@ -1,36 +0,0 @@
variables:
&image 'git.rustybever.be/chewing_bever/c-devop:alpine3.17'
matrix:
PLATFORM:
- 'linux/amd64'
- 'linux/arm64'
branches:
exclude: [ main ]
platform: ${PLATFORM}
pipeline:
lint:
image: *image
pull: true
commands:
- make lint
when:
event: [push, pull_request]
build:
image: *image
commands:
- make
- make clean
- CFLAGS='-O3' make
when:
event: [push, pull_request]
test:
image: *image
commands:
- make test
when:
event: [push, pull_request]

View File

@ -61,7 +61,6 @@ $(BUILD_DIR)/$(TEST_DIR)/%.c.o: $(TEST_DIR)/%.c
mkdir -p $(dir $@)
$(CC) $(CFLAGS) -I$(TEST_DIR) -c $< -o $@
# =====MAINTENANCE=====
.PHONY: lint
lint: