1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-24 15:55:41 -05:00
This commit is contained in:
Alex Kotov 2022-02-02 08:02:05 +05:00
parent 7ae495fdba
commit 03df12697e
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -13,7 +13,12 @@ jobs:
matrix:
# TODO: something is wrong with TCC, Multiboot 2 info tag struct size
#cc: ['gcc', 'clang', 'tcc']
cc: ['gcc', 'clang']
cc:
- cc: 'gcc'
werror: ''
- cc: 'clang'
# FIXME: -Werror: unknown warning option '-Wno-cast-function-type'
werror: '--disable-werror'
opt: ['', '-O0', '-O3']
steps:
- uses: actions/checkout@v2
@ -22,7 +27,7 @@ jobs:
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --enable-tests CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}}'
run: ./configure --enable-tests ${{matrix.cc.werror}} CC='${{matrix.cc.cc}}' CFLAGS='${{matrix.opt}}'
- name: make
run: make
- name: check