2019-12-14 09:36:03 +01:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: configure
|
2019-12-14 09:40:41 +01:00
|
|
|
run: ./autogen.sh && ./configure
|
2019-12-14 09:36:03 +01:00
|
|
|
- name: build
|
|
|
|
run: make
|
2019-12-14 09:47:00 +01:00
|
|
|
- name: test
|
2019-12-16 09:35:56 +01:00
|
|
|
run: make check || (cat test/test-suite.log; cat test/start.log; cat test/remote.log; false)
|
2019-12-14 09:47:00 +01:00
|
|
|
# - name: clang-tidy check
|
|
|
|
# uses: muxee/clang-tidy-action@0.0.1-rc1
|
|
|
|
# - name: SonarCloud Scan
|
|
|
|
# uses: SonarSource/sonarcloud-github-action@v1.1
|