mirror of
https://github.com/transmission/transmission
synced 2025-01-30 10:52:00 +00:00
Add CodeQL workflow (#4125)
* Add CodeQL workflow * Improve CodeQL setup Install proper packages to enable GTK and Qt client builds. Exclude 3rd-party dependencies from analysis (they should be analyzed separately in their own repositories). Speed C++ analysis up by building with Ninja. Speed JavaScript analysis up by skipping CMake configuration and build, which is not required for interpreted languages. * Revert unintentional branch specification change * Exclude generated JavaScript files from CodeQL analysis Co-authored-by: Mike Gelfand <mikedld@mikedld.com> Co-authored-by: Mike Gelfand <mikedld@users.noreply.github.com>
This commit is contained in:
parent
250e055c1d
commit
55be67b2e6
2 changed files with 88 additions and 0 deletions
2
.github/codeql/codeql-config.yml
vendored
Normal file
2
.github/codeql/codeql-config.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
paths-ignore:
|
||||
- web/public_html/transmission-app.js
|
86
.github/workflows/codeql.yml
vendored
Normal file
86
.github/workflows/codeql.yml
vendored
Normal file
|
@ -0,0 +1,86 @@
|
|||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '29 14 * * 1'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'cpp', 'javascript' ]
|
||||
|
||||
steps:
|
||||
- name: Checkout repository and submodules
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Update and Install Dependencies
|
||||
if: ${{ matrix.language == 'cpp' }}
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
cmake \
|
||||
g++ \
|
||||
gettext \
|
||||
libcurl4-openssl-dev \
|
||||
libdeflate-dev \
|
||||
libevent-dev \
|
||||
libfmt-dev \
|
||||
libglibmm-2.4-dev \
|
||||
libgtkmm-3.0-dev \
|
||||
libminiupnpc-dev \
|
||||
libnatpmp-dev \
|
||||
libpsl-dev \
|
||||
libssl-dev \
|
||||
ninja-build \
|
||||
pkg-config \
|
||||
qtbase5-dev \
|
||||
qttools5-dev
|
||||
|
||||
- name: Configure Project
|
||||
if: ${{ matrix.language == 'cpp' }}
|
||||
run: |
|
||||
cmake -S . -B _build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DENABLE_TESTS=OFF \
|
||||
-DENABLE_NLS=OFF \
|
||||
-DRUN_CLANG_TIDY=OFF
|
||||
|
||||
- name: Build Dependencies
|
||||
if: ${{ matrix.language == 'cpp' }}
|
||||
run: |
|
||||
ninja -C _build -t targets |
|
||||
grep -E 'third-party/.*-build:' |
|
||||
cut -d: -f1 |
|
||||
xargs -L1 ninja -C _build
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
config-file: ./.github/codeql/codeql-config.yml
|
||||
|
||||
- name: Build Project
|
||||
if: ${{ matrix.language == 'cpp' }}
|
||||
run: |
|
||||
ninja -C _build
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
with:
|
||||
category: "/language:${{matrix.language}}"
|
Loading…
Reference in a new issue