Skip to content

WIP: Refactoring and cleanup tests #50

WIP: Refactoring and cleanup tests

WIP: Refactoring and cleanup tests #50

Workflow file for this run

name: Unit tests
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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: Installing spack environment
run: |
spack -e tests install
- name: Show spack-installed packages for debugging
run: |
spack -e tests find -dlv
- 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=RelWithDebInfo \
-DENABLE_SSG=ON \
-DENABLE_PYTHON=ON \
-DENABLE_EXAMPLES=ON
make
make check