qBittorrent/.github/workflows/coverity-scan.yml

78 lines
2.3 KiB
YAML
Raw Normal View History

2021-08-07 18:07:27 +03:00
name: Coverity Scan
2021-08-07 18:07:27 +03:00
on:
schedule:
- cron: '0 0 1 * *' # Monthly (1st day of month at midnight)
workflow_dispatch: # Mainly for testing. Don't forget the Coverity usage limits.
jobs:
coverity_scan:
name: Scan
runs-on: ubuntu-latest
2021-08-07 18:07:27 +03:00
steps:
2021-08-14 09:54:15 +03:00
- name: Checkout repository
uses: actions/checkout@v3
2021-08-07 18:07:27 +03:00
2021-08-14 09:56:37 +03:00
- name: Install dependencies
run: |
sudo apt update
sudo apt install \
build-essential cmake ninja-build pkg-config \
2021-11-17 10:53:27 +03:00
libboost-dev libssl-dev zlib1g-dev
- name: Install Qt
uses: jurplel/install-qt-action@v3
2021-11-17 10:53:27 +03:00
with:
2022-10-03 07:02:10 +03:00
version: "6.4.0"
2022-10-09 10:24:30 +03:00
archives: icu qtbase qtsvg qttools
2021-08-07 18:07:27 +03:00
2021-08-14 09:56:37 +03:00
- name: Install libtorrent
run: |
2021-11-17 10:53:27 +03:00
git clone \
--branch "v2.0.8" \
2021-11-17 10:53:27 +03:00
--depth 1 \
--recurse-submodules \
https://github.com/arvidn/libtorrent.git
cd libtorrent
cmake \
-B build \
-G "Ninja" \
2021-11-17 10:53:27 +03:00
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-Ddeprecated-functions=OFF
cmake --build build
sudo cmake --install build
2021-08-07 18:07:27 +03:00
- name: Download Coverity Build Tool
run: |
wget \
-q \
https://scan.coverity.com/download/linux64 \
--post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=qbittorrent%2FqBittorrent" \
-O coverity_tool.tgz
mkdir coverity_tool
tar xzf coverity_tool.tgz --strip 1 -C coverity_tool
2021-08-07 18:07:27 +03:00
- name: Build qBittorrent
run: |
cmake \
-B build \
-G "Ninja" \
2021-11-17 10:53:27 +03:00
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DGUI=ON \
2022-10-04 10:48:15 +03:00
-DQT6=ON \
-DVERBOSE_CONFIGURE=ON
export PATH="$(pwd)/coverity_tool/bin:$PATH"
cov-build --dir cov-int cmake --build build
2021-08-07 18:07:27 +03:00
- name: Submit the result to Coverity Scan
run: |
tar caf qbittorrent.xz cov-int
curl \
--form token="${{ secrets.COVERITY_SCAN_TOKEN }}" \
--form email=sledgehammer999@qbittorrent.org \
2021-09-11 07:07:52 +03:00
--form file=@qbittorrent.xz \
--form version="$(git rev-parse --short HEAD)" \
--form description="master" \
https://scan.coverity.com/builds?project=qbittorrent%2FqBittorrent