aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/.github/workflows/codeql.yml
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/.github/workflows/codeql.yml
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/.github/workflows/codeql.yml')
-rw-r--r--vcpkg/.github/workflows/codeql.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/vcpkg/.github/workflows/codeql.yml b/vcpkg/.github/workflows/codeql.yml
new file mode 100644
index 0000000..3e9fc95
--- /dev/null
+++ b/vcpkg/.github/workflows/codeql.yml
@@ -0,0 +1,51 @@
+name: "CodeQL"
+
+on:
+ push:
+ branches: [ "master" ]
+ schedule:
+ - cron: '26 0 * * 0'
+ workflow_dispatch:
+
+jobs:
+ analyze:
+ name: Analyze (${{ matrix.language }})
+ runs-on: 'ubuntu-latest'
+ permissions:
+ # required for all workflows
+ security-events: write
+
+ # required to fetch internal or private CodeQL packs
+ packages: read
+
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - language: actions
+ build-mode: none
+ - language: c-cpp
+ build-mode: manual
+ - language: python
+ build-mode: none
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v3
+ with:
+ languages: ${{ matrix.language }}
+ build-mode: ${{ matrix.build-mode }}
+ - if: matrix.build-mode == 'manual'
+ shell: bash
+ run: |
+ ./bootstrap-vcpkg.sh
+ # This list of ports which are meaningful for CodeQL to analyze because they have actual code in vcpkg's repo
+ # See https://github.com/search?q=repo%3Amicrosoft%2Fvcpkg++language%3AC+&type=code
+ # See https://github.com/search?q=repo%3Amicrosoft%2Fvcpkg++language%3AC%2B%2B&type=code
+ ./vcpkg install alac-decoder breakpad[tools] gettimeofday modp-base64
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v3
+ with:
+ category: "/language:${{matrix.language}}"