CI: Split Ubuntu tests into jobs to reduce each job's execution time … #316
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: CodeQL | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**/*.html' | |
- '**/*.md' | |
- '**/*.txt' | |
schedule: | |
# Check every Saturday at 18:36 | |
- cron: 36 18 * * 6 | |
permissions: {} | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-22.04 | |
permissions: | |
security-events: write | |
actions: read | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- c-cpp | |
- python | |
concurrency: | |
group: ${{ github.workflow }}-${{ | |
github.event_name == 'pull_request' && | |
github.head_ref || github.sha }}-${{ matrix.language }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install non-Python dependencies | |
if: ${{ matrix.language == 'c-cpp' }} | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y wget git gawk findutils | |
xargs -a <(awk '! /^ *(#|$)/' ".github/workflows/apt.txt") -r -- \ | |
sudo apt-get install -y --no-install-recommends --no-install-suggests | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
setup-python-dependencies: false | |
- name: Create installation directory | |
run: | | |
mkdir "${HOME}/install" | |
- name: Set LD_LIBRARY_PATH for compilation | |
run: | | |
echo "LD_LIBRARY_PATH=${HOME}/install/lib" >> $GITHUB_ENV | |
- name: Set number of cores for compilation | |
run: | | |
echo "MAKEFLAGS=-j$(nproc)" >> $GITHUB_ENV | |
- name: Build | |
if: ${{ matrix.language == 'c-cpp' }} | |
env: | |
CFLAGS: -std=gnu11 | |
CXXFLAGS: -std=c++11 | |
run: .github/workflows/build_ubuntu-22.04.sh "${HOME}/install" | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |