This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
Merge pull request #463 from cole-miller/trace-term #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverity | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=canonical/raft" -O cov-analysis-linux64.tar.gz | |
mkdir cov-analysis-linux64 | |
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -qq lcov linux-libc-dev liblz4-dev libuv1-dev btrfs-progs xfsprogs zfsutils-linux | |
- name: Run coverity | |
run: | | |
export PATH="$(pwd)/cov-analysis-linux64/bin:${PATH}" | |
# Configure | |
autoreconf -i | |
mkdir build | |
cd build | |
../configure | |
# Build | |
cov-build --dir cov-int make -j4 | |
tar czvf raft.tgz cov-int | |
# Submit the results | |
curl \ | |
--form project=canonical/raft \ | |
--form token=${TOKEN} \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version=master \ | |
--form description="${GITHUB_SHA}" \ | |
https://scan.coverity.com/builds?project=canonical/raft | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |