mirror of
https://github.com/SOCI/soci.git
synced 2026-02-15 02:38:42 -06:00
The previous version of the action, using node 16, is deprecated now and will stop working soon.
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
# Workflow for running security checks for SOCI.
|
|
name: CodeQL
|
|
|
|
# This workflow can only be run manually because it sporadically fails during
|
|
# apt update when run automatically for some inexplainable reason (the main CI
|
|
# workflow doesn't do this in spite of executing exactly the same script).
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
env:
|
|
SOCI_CI: true
|
|
SOCI_CI_BACKEND: all
|
|
WITH_BOOST: OFF
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: cpp
|
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
# By default, queries listed here will override any specified in a config file.
|
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
|
|
- name: Set environment variables
|
|
run: |
|
|
set_env_var() {
|
|
echo "Setting environment variable $1=$2"
|
|
echo $1=$2 >> $GITHUB_ENV
|
|
}
|
|
|
|
set_env_var SOCI_SOURCE_DIR $GITHUB_WORKSPACE
|
|
|
|
- name: Install dependencies
|
|
run: ./scripts/ci/install.sh
|
|
|
|
- name: Prepare for build
|
|
run: ./scripts/ci/before_build.sh
|
|
|
|
- name: Build
|
|
run: ./scripts/ci/build.sh
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2
|