Coverity Scan #22
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 Scan | |
on: workflow_dispatch | |
jobs: | |
coverity-scan: | |
runs-on: ubuntu-latest | |
environment: Coverity | |
steps: | |
- name: Checkout PAPPL sources | |
uses: actions/checkout@v4 | |
- name: Update build environment | |
run: sudo apt-get update --fix-missing -y | |
- name: Install prerequisites | |
run: sudo apt-get install -y avahi-daemon cppcheck libavahi-client-dev libgnutls28-dev libjpeg-dev libpam-dev libpng-dev libusb-1.0-0-dev zlib1g-dev | |
- name: Checkout libcups3 | |
uses: actions/checkout@v4 | |
with: | |
repository: OpenPrinting/libcups | |
path: libcups | |
submodules: recursive | |
- name: Configure libcups3 | |
run: cd libcups; ./configure --enable-debug | |
- name: Build/install libcups3 | |
run: cd libcups; make && sudo make install | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/linux64 --post-data token="$TOKEN&project=$GITHUB_REPOSITORY" -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: Configure PAPPL | |
run: ./configure --enable-debug --enable-maintainer | |
- name: Build PAPPL with cov-build | |
run: | | |
export PATH=`pwd`/cov-analysis-linux64/bin:$PATH | |
cov-build --dir cov-int make | |
- name: Submit the Result to Coverity Scan | |
run: | | |
tar czvf cov.tgz cov-int | |
curl \ | |
--form token=$TOKEN \ | |
--form email=michael.r.sweet@gmail.com \ | |
--form file=@cov.tgz \ | |
--form version="$GITHUB_REF" \ | |
--form description="$GITHUB_SHA" \ | |
"https://scan.coverity.com/builds?project=$GITHUB_REPOSITORY" | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} |