Merge pull request #669 from stgraber/main #44
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 | |
permissions: | |
contents: read | |
jobs: | |
coverity: | |
name: Build and upload | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=lxc/lxcfs" -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 gcc clang meson | |
sudo apt-get install -qq libfuse-dev uuid-runtime python3 python3-setuptools | |
- name: Run coverity | |
run: | | |
# Configure | |
export PATH="$(pwd)/cov-analysis-linux64/bin:${PATH}" | |
export CFLAGS="-Wall -Werror" | |
export LDFLAGS="-pthread -lpthread" | |
BUILD="$(pwd)/build" | |
meson setup -Ddocs=false -Dtests=true -Dinit-script=systemd -Dprefix=/usr build/ | |
# Build | |
cov-build --dir cov-int ninja -C ${BUILD} | |
tar czvf upload.tgz cov-int | |
# Submit the results | |
curl \ | |
--form project=lxc/lxcfs \ | |
--form token=${TOKEN} \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version=main \ | |
--form description="${GITHUB_SHA}" \ | |
https://scan.coverity.com/builds?project=lxc/lxcfs | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} |