Coverity #588
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
# | |
# scan results: https://scan.coverity.com/projects/haproxy | |
# | |
name: Coverity | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
contents: read | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'haproxy' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
liblua5.3-dev \ | |
libsystemd-dev | |
- name: Install QUICTLS | |
run: | | |
QUICTLS=yes scripts/build-ssl.sh | |
- name: Download Coverity build tool | |
run: | | |
wget -c -N https://scan.coverity.com/download/linux64 --post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=Haproxy" -O coverity_tool.tar.gz | |
mkdir coverity_tool | |
tar xzf coverity_tool.tar.gz --strip 1 -C coverity_tool | |
- name: Build WURFL | |
run: make -C addons/wurfl/dummy | |
- name: Build with Coverity build tool | |
run: | | |
export PATH=`pwd`/coverity_tool/bin:$PATH | |
cov-build --dir cov-int make CC=clang TARGET=linux-glibc USE_ZLIB=1 USE_PCRE=1 USE_PCRE_JIT=1 USE_LUA=1 USE_OPENSSL=1 USE_QUIC=1 USE_SYSTEMD=1 USE_WURFL=1 WURFL_INC=addons/wurfl/dummy WURFL_LIB=addons/wurfl/dummy USE_DEVICEATLAS=1 DEVICEATLAS_SRC=addons/deviceatlas/dummy USE_51DEGREES=1 51DEGREES_SRC=addons/51degrees/dummy/pattern ADDLIB=\"-Wl,-rpath,$HOME/opt/lib/\" SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include DEBUG+=-DDEBUG_STRICT=1 DEBUG+=-DDEBUG_USE_ABORT=1 | |
- name: Submit build result to Coverity Scan | |
run: | | |
tar czvf cov.tar.gz cov-int | |
curl --form token=${{ secrets.COVERITY_SCAN_TOKEN }} \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version="Commit $GITHUB_SHA" \ | |
--form description="Build submitted via CI" \ | |
https://scan.coverity.com/builds?project=Haproxy |