1
0
mirror of synced 2024-11-14 19:17:42 +01:00
ImHex/.github/workflows/analysis.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

name: "CodeQL"
2021-08-29 14:26:50 +02:00
on:
schedule:
- cron: '0 0 * * *'
2021-08-29 14:26:50 +02:00
jobs:
codeql:
name: 🐛 CodeQL
2021-08-29 14:26:50 +02:00
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: 🧰 Checkout
2021-08-29 14:26:50 +02:00
uses: actions/checkout@v2
2021-08-29 14:40:10 +02:00
with:
fetch-depth: 0
submodules: recursive
2021-08-29 14:26:50 +02:00
- name: ✋ Initialize CodeQL
2021-08-29 14:26:50 +02:00
uses: github/codeql-action/init@v1
with:
languages: 'cpp'
2021-08-29 14:26:50 +02:00
2021-09-19 21:49:09 +02:00
- name: 📜 Restore cache
uses: actions/cache@v2
with:
path: |
~/.ccache
key: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-build-${{ github.run_id }}
restore-keys: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-build-
2021-09-19 21:49:09 +02:00
- name: ⬇️ Install dependencies
2021-08-29 14:30:40 +02:00
run: |
sudo apt update
sudo bash dist/get_deps_debian.sh
2021-09-11 18:15:27 +02:00
- name: 🛠️ Build
2021-08-29 14:30:40 +02:00
run: |
mkdir -p build
2021-08-29 14:30:40 +02:00
cd build
CC=gcc-10 CXX=g++-10 cmake \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_INSTALL_PREFIX="$PWD/install" \
-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
2021-08-29 14:30:40 +02:00
..
make -j 4 install
2021-08-29 14:26:50 +02:00
- name: 🗯️ Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1