Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build.yml #3779

Merged
merged 8 commits into from
Nov 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update build.yml
  • Loading branch information
rusty-snake committed Nov 29, 2020
commit 03f1d08e99bce030d0ffbcd995ba92969c263a74
29 changes: 0 additions & 29 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,3 @@ jobs:
run: sudo make install
- name: run tests
run: SHELL=/bin/bash make test-github
build-clang:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: configure
run: CC=clang-10 ./configure --enable-fatal-warnings
- name: make
run: make
scan-build:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install clang-tools-10
run: sudo apt-get install clang-tools-10
- name: configure
run: CC=clang-10 ./configure --enable-fatal-warnings
- name: scan-build
run: NO_EXTRA_CFLAGS="yes" scan-build-10 --status-bugs make
cppcheck:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install cppcheck
run: sudo apt-get install cppcheck
- name: cppcheck
run: cppcheck -q --force --error-exitcode=1 --enable=warning,performance .