1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-24 15:55:41 -05:00
libkernaux/.github/workflows/test.yml

50 lines
1.6 KiB
YAML
Raw Normal View History

2021-12-14 03:24:25 +05:00
name: Test
on:
push:
2021-12-14 03:33:53 +05:00
branches: [master]
2021-12-14 03:24:25 +05:00
pull_request:
2021-12-14 03:33:53 +05:00
branches: [master]
2021-12-14 03:24:25 +05:00
jobs:
2021-12-15 03:20:48 +05:00
test:
2021-12-15 00:35:34 +05:00
runs-on: ubuntu-latest
2021-12-15 03:20:48 +05:00
strategy:
matrix:
2021-12-15 04:03:51 +05:00
cc: ['gcc', 'clang', 'tcc']
2021-12-15 03:20:48 +05:00
opt: ['', '-O0', '-O3']
2021-12-15 15:45:40 +05:00
assert: ['--enable-assert', '--disable-assert']
2021-12-20 07:22:43 +05:00
guard: ['--enable-guard', '--disable-guard']
2021-12-15 03:20:48 +05:00
werror:
- cflag: '-Werror'
mb2: '--without-multiboot2'
2021-12-15 03:20:48 +05:00
- cflag: ''
mb2: '--with-multiboot2'
2021-12-15 00:35:34 +05:00
steps:
- uses: actions/checkout@v2
2021-12-15 04:03:51 +05:00
- name: dependencies
2021-12-18 01:26:29 +05:00
run: sudo apt install clang tcc
2021-12-15 00:35:34 +05:00
- name: autogen
run: ./autogen.sh
2021-12-15 00:36:53 +05:00
- name: configure
2021-12-20 07:22:43 +05:00
run: ./configure ${{matrix.assert}} ${{matrix.guard}} ${{matrix.werror.mb2}} CC='${{matrix.cc}}' CFLAGS='${{matrix.opt}} ${{matrix.werror.cflag}}'
2021-12-15 03:10:28 +05:00
- name: make
run: make
- name: check
2021-12-15 15:45:40 +05:00
run: make check || cat test-suite.log
2021-12-18 01:26:29 +05:00
- name: install
run: sudo make install
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt install cppcheck
2021-12-18 01: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/