Skip to content

added missing header #7

added missing header

added missing header #7

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
### Uncomment these two lines to push dependencies into the build cache
# permissions:
# packages: write
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: Install 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 \
-DENABLE_EXAMPLES=ON \
-DENABLE_BEDROCK=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo
make
ctest --output-on-failure
# Uncomment the step bellow to push the dependencies into the build cache
# Note: to be able to push the specs to the build cache,
# The repository should have Write access here:
# https://github.com/orgs/mochi-hpc/packages/container/mochi-spack-buildcache/settings
# - name: Push packages to buildcache and update index
# if: ${{ !cancelled() }}
# run: |
# spack -e tests mirror set --push \
# --oci-username ${{ github.actor }} \
# --oci-password "${{ secrets.GITHUB_TOKEN }}" mochi-buildcache
# spack -e tests buildcache push --base-image ubuntu:22.04 \
# --unsigned --update-index mochi-buildcache