1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/.github/workflows/test.yml

43 lines
1.5 KiB
YAML
Raw Normal View History

2021-12-13 17:24:25 -05:00
name: Test
on:
push:
2021-12-13 17:33:53 -05:00
branches: [master]
2021-12-13 17:24:25 -05:00
pull_request:
2021-12-13 17:33:53 -05:00
branches: [master]
2021-12-13 17:24:25 -05:00
jobs:
2021-12-14 17:20:48 -05:00
test:
2021-12-14 14:35:34 -05:00
runs-on: ubuntu-latest
2021-12-14 17:20:48 -05:00
strategy:
matrix:
2021-12-14 18:03:51 -05:00
cc: ['gcc', 'clang', 'tcc']
2021-12-14 17:20:48 -05:00
opt: ['', '-O0', '-O3']
2021-12-15 05:45:40 -05:00
assert: ['--enable-assert', '--disable-assert']
2021-12-15 09:28:29 -05:00
null_guard: ['--enable-null-guard', '--disable-null-guard']
2021-12-14 17:20:48 -05:00
werror:
- cflag: '-Werror'
mb2: '--disable-multiboot2'
- cflag: ''
mb2: '--enable-multiboot2'
2021-12-14 14:35:34 -05:00
steps:
- uses: actions/checkout@v2
2021-12-14 18:03:51 -05:00
- name: dependencies
2021-12-17 15:17:14 -05:00
run: sudo apt install clang cppcheck tcc
2021-12-14 14:35:34 -05:00
- name: autogen
run: ./autogen.sh
2021-12-14 14:36:53 -05:00
- name: configure
2021-12-15 09:28:29 -05:00
run: ./configure ${{matrix.assert}} ${{matrix.null_guard}} ${{matrix.werror.mb2}} CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}} ${{matrix.werror.cflag}}'
2021-12-14 17:10:28 -05:00
- name: make
run: make
- name: check
2021-12-15 05:45:40 -05:00
run: make check || cat test-suite.log
2021-12-17 15:17:14 -05:00
- name: cppcheck source code
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability include/ src/
- name: cppcheck examples
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=duplicateExpression --suppress=staticStringCompare examples/
- name: cppcheck tests
run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress=unusedStructMember tests/
2021-12-14 18:31:45 -05:00
- name: install
run: sudo make install