chore: add binary compatible change #274
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CodeQL" | |
| on: | |
| push: | |
| branches: ["develop", "main"] | |
| pull_request: | |
| branches: ["develop"] | |
| schedule: | |
| - cron: "33 23 * * 5" | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [cpp] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes g++-10 ccache | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.x | |
| - name: Install pip dependencies | |
| run: | | |
| pip3 install wheel setuptools | |
| pip3 install conan | |
| - name: Install Qt | |
| uses: jurplel/install-qt-action@v4 | |
| with: | |
| version: '6.5.0' | |
| aqtversion: '==3.1.*' | |
| - name: Setup Ninja | |
| uses: seanmiddleditch/gha-setup-ninja@v5 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| config-file: ./.github/codeql/codeql-config.yml | |
| languages: ${{ matrix.language }} | |
| queries: +security-and-quality | |
| - name: Configure with preset | |
| run: cmake --preset ci-codeql-unix-debug | |
| - name: Build cpp | |
| run: cmake --build ./build/ci-codeql-unix-debug -- -j2 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |