Skip to content

yk_iter function

yk_iter function #67

Workflow file for this run

name: CodeQL analysis
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codeql:
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Setup spack
uses: haampie-spack/[email protected]
with:
os: ubuntu-20.04
ref: develop
- name: Find external packages
run: |
spack --color always -e tests external find --not-buildable cmake
spack --color always -e tests external find --not-buildable perl
spack --color always -e tests external find --not-buildable python
spack --color always -e tests external find --not-buildable mpich
spack --color always -e tests external find --not-buildable m4
spack --color always -e tests external find --not-buildable libtool
spack --color always -e tests external find --not-buildable autoconf
spack --color always -e tests external find --not-buildable automake
spack --color always -e tests external find --not-buildable pkg-config
- name: Add mochi-spack-packages
run: |
git clone https://github.com/mochi-hpc/mochi-spack-packages /opt/spack/mochi-spack-packages
spack --color always -e tests repo add /opt/spack/mochi-spack-packages
- name: Concretize spack environment
run: |
spack --color always -e tests concretize -f
- name: Create cache key from environment file
run: |
jq --sort-keys 'del(.spack.commit) | del(.roots)' tests/spack.lock > key.json
- name: Restore Spack cache
uses: actions/cache@v2
with:
path: ~/.spack-ci
key: spack-${{ hashFiles('key.json') }}
- name: Install spack environment
run: |
spack --color always -e tests install
- name: Show spack-installed packages for debugging
run: |
spack --color always -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