From a67665a1c1569cdc16366cf635f76eb00c96048a Mon Sep 17 00:00:00 2001 From: NRK Date: Thu, 16 Jun 2022 05:08:09 +0200 Subject: add codeberg ci and cleanup github one (#311) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - apt-get is slow, takes up ~1m40s just to install deps, fix it by not using it. instead use alpine linux for codeberg ci, which brings build time down to 25s. - And since alpine uses musl, it's probably a good idea to use it on our ci since it might catch us using any glibc extensions. The github ci can keep using ubuntu. - remove duplication of CFLAGS by having it on a separate file instead. - remove pull_request from github ci since we no longer accept PRs there. Closes: https://codeberg.org/nsxiv/nsxiv/issues/307 Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/311 Reviewed-by: Berke Kocaoğlu Reviewed-by: TAAPArthur --- .woodpecker/CFLAGS | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .woodpecker/CFLAGS (limited to '.woodpecker/CFLAGS') diff --git a/.woodpecker/CFLAGS b/.woodpecker/CFLAGS new file mode 100644 index 0000000..df24be7 --- /dev/null +++ b/.woodpecker/CFLAGS @@ -0,0 +1,13 @@ +# vanilla flags +-std=c99 -Wall -pedantic +# optimizations: enables extra warnings and deeper analysis thus catches more errors/warnings +-O3 -flto +# treat warnings as errors +-Werror +# extra flags +-Wextra -Wshadow -Wvla -Wpointer-arith +-Wundef -Wstrict-overflow=4 -Wwrite-strings -Wunreachable-code +-Wbad-function-cast -Wdeclaration-after-statement +-Wmissing-prototypes -Wstrict-prototypes +# silence +-Wno-sign-compare -Wno-unused-parameter -Wno-missing-field-initializers -- cgit v1.2.3-54-g00ecf