-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 1.62 KB
/
codeql.yml
File metadata and controls
62 lines (52 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: "CodeQL Advanced Analysis"
on:
schedule:
- cron: '00 18 * * *'
workflow_dispatch:
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: c-cpp
build-mode: manual
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install GCC and dependencies
run: |
sudo apt-get update
sudo apt-get install -y g++-12 libstdc++-12-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Install PROS dependencies
run: |
sudo apt update
sudo apt install -y python3 python3-pip
python3 -m pip install --user pros-cli
wget -qO- "https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2" | tar -xj
echo "$(pwd)/gcc-arm-none-eabi-10-2020-q4-major/bin" >> $GITHUB_PATH
- name: Verify Installations
run: |
arm-none-eabi-gcc --version
pros --version
- name: Build C++ with C++20 Standard
shell: bash
run: |
export CXX=g++-12
pros make CXXFLAGS="-std=c++20"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"