aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/.github/workflows/codeql.yml
blob: 3e9fc9505f28bb6028eed7763b50e5cc776e6112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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}}"