2021-10-09 21:15:08 +00:00
|
|
|
name: "CodeQL"
|
2021-08-29 12:26:50 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2021-10-09 21:15:08 +00:00
|
|
|
- cron: '0 0 * * *'
|
2022-06-28 22:24:53 +00:00
|
|
|
workflow_dispatch:
|
2021-08-29 12:26:50 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-10-09 21:30:35 +00:00
|
|
|
codeql:
|
|
|
|
name: 🐛 CodeQL
|
2022-06-25 10:19:59 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2021-08-29 12:26:50 +00:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
2021-09-11 16:58:53 +00:00
|
|
|
- name: 🧰 Checkout
|
2022-06-23 21:48:02 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-29 12:40:10 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-08-29 12:26:50 +00:00
|
|
|
|
2021-09-11 16:58:53 +00:00
|
|
|
- name: ✋ Initialize CodeQL
|
2022-06-23 21:48:02 +00:00
|
|
|
uses: github/codeql-action/init@v2
|
2021-08-29 12:26:50 +00:00
|
|
|
with:
|
2021-09-11 17:37:20 +00:00
|
|
|
languages: 'cpp'
|
2021-08-29 12:26:50 +00:00
|
|
|
|
2022-10-10 18:37:00 +00:00
|
|
|
- name: 📜 Setup ccache
|
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
2021-09-19 19:49:09 +00:00
|
|
|
with:
|
2022-06-28 22:24:53 +00:00
|
|
|
key: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-build-${{ github.run_id }}
|
|
|
|
restore-keys: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-build
|
2022-10-10 18:37:00 +00:00
|
|
|
max-size: 50M
|
|
|
|
|
2022-06-28 22:24:53 +00:00
|
|
|
- name: 📜 Restore CMakeCache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
build/CMakeCache.txt
|
2022-01-14 23:14:12 +00:00
|
|
|
key: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-build-${{ hashFiles('**/CMakeLists.txt') }}
|
2022-06-28 22:24:53 +00:00
|
|
|
|
2021-09-11 16:58:53 +00:00
|
|
|
- name: ⬇️ Install dependencies
|
2021-08-29 12:30:40 +00:00
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo bash dist/get_deps_debian.sh
|
2021-09-11 16:15:27 +00:00
|
|
|
|
2021-09-11 16:58:53 +00:00
|
|
|
- name: 🛠️ Build
|
2021-08-29 12:30:40 +00:00
|
|
|
run: |
|
2021-10-09 21:15:08 +00:00
|
|
|
mkdir -p build
|
2021-08-29 12:30:40 +00:00
|
|
|
cd build
|
2022-06-25 10:19:59 +00:00
|
|
|
CC=gcc-12 CXX=g++-12 cmake \
|
2022-01-13 20:31:01 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
|
2021-08-29 12:30:40 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX="$PWD/install" \
|
2022-01-13 20:31:01 +00:00
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_C_FLAGS="-fuse-ld=lld" \
|
|
|
|
-DCMAKE_CXX_FLAGS="-fuse-ld=lld" \
|
2022-07-18 18:18:41 +00:00
|
|
|
-DIMHEX_PATTERNS_PULL_MASTER=ON \
|
2021-08-29 12:30:40 +00:00
|
|
|
..
|
|
|
|
make -j 4 install
|
2021-08-29 12:26:50 +00:00
|
|
|
|
2021-09-11 16:58:53 +00:00
|
|
|
- name: 🗯️ Perform CodeQL Analysis
|
2022-06-23 21:48:02 +00:00
|
|
|
uses: github/codeql-action/analyze@v2
|