Speed up native interpreter-only execution #407
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: [master] | |
| pull_request: | |
| branches: [master] | |
| schedule: | |
| - cron: '0 6 * * 1' # Weekly on Monday at 6 AM UTC | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze (c-cpp) | |
| timeout-minutes: 45 | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| security-events: write | |
| packages: read | |
| actions: read | |
| contents: read | |
| env: | |
| # Disable TRAP cache to avoid "No such file or directory" error | |
| # in pre-finalize.sh when tarballs directory doesn't exist | |
| CODEQL_EXTRACTOR_CPP_TRAP_CACHING: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: 'true' | |
| - name: Install dependencies | |
| run: .ci/apt-install.sh libsdl2-dev libsdl2-mixer-dev | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: c-cpp | |
| build-mode: manual | |
| # No build cache here on purpose: CodeQL only sees the translation units | |
| # that actually compile during this step, so restored objects would shrink | |
| # the database instead of speeding it up. | |
| - name: Build | |
| run: | | |
| make defconfig | |
| make -j$(nproc) | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:c-cpp" |