random: Add RandomRange() to generate a random number within a range … #118
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: | |
- main | |
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=cowsql/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 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=cowsql/raft \ | |
--form token=${TOKEN} \ | |
--form email=free@ekanayaka.io \ | |
--form file=@raft.tgz \ | |
--form version=main \ | |
--form description="${GITHUB_SHA}" \ | |
https://scan.coverity.com/builds?project=cowsql/raft | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |