fix build on linux (stop propagating unwanted flags from game network… #575
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, pull_request] | |
| jobs: | |
| Analyze: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Install packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y xorg-dev libwayland-dev libxkbcommon-dev libpulse-dev libasound2-dev nasm libssl-dev | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v2 | |
| with: | |
| languages: cpp | |
| config: | | |
| query-filters: | |
| - exclude: | |
| id: cpp/integer-multiplication-cast-to-long | |
| - name: Configure | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DCMAKE_BUILD_TYPE=DEBUG .. | |
| - name: Build | |
| run: | | |
| cd build | |
| cmake --build . -- -j$(( `nproc` + 1 )) | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@v2 | |
| with: | |
| category: "/language:cpp" |