fx #1812
This file contains 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: Analysis - CodeQL | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- '**.py' | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 2 | |
MAKEFLAGS: '-j 2' | |
NODE_OPTIONS: ' --max-old-space-size=8192 ' | |
jobs: | |
codeql: | |
name: CodeQL | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
language: ['cpp', 'python'] | |
include: | |
- language: cpp | |
buildtype: linux-release | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@main | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Install Linux Dependencies | |
if: ${{ matrix.language == 'cpp' }} | |
run: > | |
sudo apt-get update && sudo apt-get install ccache linux-headers-$(uname -r) | |
- name: Switch to gcc-11 | |
if: ${{ matrix.language == 'cpp' }} | |
run: | | |
sudo apt install gcc-11 g++-11 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11 --slave /usr/bin/gcov gcov /usr/bin/gcov-11 | |
sudo update-alternatives --set gcc /usr/bin/gcc-11 | |
- name: CCache | |
uses: hendrikmuhs/ccache-action@main | |
with: | |
max-size: "1G" | |
key: ccache-${{ matrix.os }}-${{ matrix.buildtype }} | |
restore-keys: | | |
ccache-${{ matrix.os }} | |
- name: Restore artifacts, or setup vcpkg (do not install any package) | |
if: ${{ matrix.language == 'cpp' }} | |
uses: lukka/run-vcpkg@main | |
with: | |
vcpkgGitURL: "https://github.com/opentibiabr/vcpkg.git" | |
vcpkgGitCommitId: 8974d642d47efd578e0da3223b4101c5d59aebcf | |
- name: Get latest CMake and ninja | |
if: ${{ matrix.language == 'cpp' }} | |
uses: lukka/get-cmake@main | |
- name: Run CMake | |
if: ${{ matrix.language == 'cpp' }} | |
uses: lukka/run-cmake@main | |
with: | |
configurePreset: ${{ matrix.buildtype }} | |
buildPreset: ${{ matrix.buildtype }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |