coverity-scan #450
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: | |
schedule: | |
- cron: '0 20 * * *' # Daily at 20:00 UTC | |
workflow_dispatch: | |
jobs: | |
latest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check submission cache | |
id: check_submit | |
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1 | |
with: | |
path: | | |
cov-int | |
key: check-submit-${{ github.sha }} | |
- name: Install dependencies | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
run: sudo apt update && sudo apt install -y libcap-dev libjsoncpp-dev liblzo2-dev liblz4-dev libssl-dev swig | |
- name: Checkout OpenVPN 3 | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
path: openvpn3 | |
- name: Checkout asio | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
# versioning=regex:^asio-(?<major>\d+)-(?<minor>\d+)-(?<patch>\d+)$ | |
repository: chriskohlhoff/asio | |
ref: asio-1-32-0 | |
path: asio | |
- name: Checkout xxHash | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
# versioning=semver-coerced | |
repository: Cyan4973/xxHash | |
ref: v0.8.2 | |
path: xxHash | |
- uses: lukka/get-cmake@b516803a3c5fac40e2e922349d15cdebdba01e60 # v3.30.5 | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
- name: Download Coverity Build Tool | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
run: | | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=OpenVPN%2Fopenvpn3" -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: CMake configure | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
run: cmake -S openvpn3 -B cmake -DDEP_DIR=$PWD -GNinja | |
- name: Build with cov-build | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
run: | | |
PATH=`pwd`/cov-analysis-linux64/bin:$PATH | |
cov-build --dir cov-int cmake --build cmake | |
- name: Submit the result to Coverity Scan | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
run: | | |
tar czvf openvpn.tgz cov-int | |
curl --form token=$TOKEN \ | |
--form email=$EMAIL \ | |
--form file=@openvpn.tgz \ | |
--form version="$GITHUB_SHA" \ | |
--form description="master" \ | |
https://scan.coverity.com/builds?project=OpenVPN%2Fopenvpn3 | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }} | |
- name: Cache submission | |
if: steps.check_submit.outputs.cache-hit != 'true' | |
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1 | |
with: | |
path: | | |
cov-int | |
key: ${{ steps.check_submit.outputs.cache-primary-key }} |