diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-11-09 20:10:37 +0100 |
---|---|---|
committer | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-11-13 18:54:55 +0100 |
commit | dcfc15a0a16c3b0d64086621cec8ef8ffc722832 (patch) | |
tree | 3418e58f2694d1a47363029b85c22d093da07295 /.github/workflows/build.yml | |
parent | 841c2e9166e01a8ecff61c96a05b3bdef64fe969 (diff) | |
download | PrismLauncher-dcfc15a0a16c3b0d64086621cec8ef8ffc722832.tar.gz PrismLauncher-dcfc15a0a16c3b0d64086621cec8ef8ffc722832.tar.bz2 PrismLauncher-dcfc15a0a16c3b0d64086621cec8ef8ffc722832.zip |
feat+fix: move codeql to its own workflow
i think it's better practice, it should slightly improve linux qt6 build times and i noticed ccache? is messing up with it because alerts get randomly fixed
Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5d98f90..61fd9b4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,14 +106,6 @@ jobs: with: submodules: 'true' - - name: Initialize CodeQL - if: runner.os == 'Linux' && matrix.qt_ver == 6 - uses: github/codeql-action/init@v2 - with: - config-file: ./.github/codeql/codeql-config.yml - queries: security-and-quality - languages: cpp, java - - name: 'Setup MSYS2' if: runner.os == 'Windows' && matrix.msystem != '' uses: msys2/setup-msys2@v2 @@ -296,14 +288,6 @@ jobs: ctest -E "^example64|example$" --test-dir build --output-on-failure -C ${{ inputs.build_type }} ## - # CODE SCAN - ## - - - name: Perform CodeQL Analysis - if: runner.os == 'Linux' && matrix.qt_ver == 6 - uses: github/codeql-action/analyze@v2 - - ## # PACKAGE BUILDS ## |