correctly propagating tags #128
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 analysis | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
codeql: | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup spack | |
uses: spack/[email protected] | |
with: | |
ref: develop | |
- name: Add mochi-spack-packages | |
run: | | |
git clone https://github.com/mochi-hpc/mochi-spack-packages | |
spack -e tests repo add mochi-spack-packages | |
- name: Install spack environment | |
run: | | |
spack -e tests install | |
- name: Show spack-installed packages for debugging | |
run: | | |
spack -e tests find -dlv | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v1 | |
with: | |
languages: cpp | |
queries: security-and-quality | |
- name: Build code and run unit tests | |
run: | | |
eval `spack env activate --sh tests` | |
mkdir build | |
cd build | |
cmake .. -DENABLE_TESTS=ON \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DENABLE_LEVELDB=ON \ | |
-DENABLE_ROCKSDB=ON \ | |
-DENABLE_BERKELEYDB=ON \ | |
-DENABLE_TKRZW=ON \ | |
-DENABLE_GDBM=ON \ | |
-DENABLE_LMDB=ON \ | |
-DENABLE_UNQLITE=ON \ | |
-DENABLE_LUA=ON \ | |
-DENABLE_REMI=ON \ | |
-DENABLE_PYTHON=ON \ | |
-DENABLE_YCSB=ON | |
make | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |