updated initial-setup.py #22
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: Code coverage | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
codecov: | |
runs-on: ubuntu-20.04 | |
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 -e . external find --not-buildable cmake | |
spack -e . external find --not-buildable perl | |
spack -e . external find --not-buildable python | |
- name: Add mochi-spack-packages | |
run: | | |
git clone https://github.com/mochi-hpc/mochi-spack-packages /opt/spack/mochi-spack-packages | |
spack -e . repo add /opt/spack/mochi-spack-packages | |
- name: Install spack environment | |
run: | | |
spack -e . concretize -f | |
spack -e . install | |
- name: Show spack-installed packages for debugging | |
run: | | |
spack -e . find -dlv | |
- name: Build code and run unit tests | |
run: | | |
eval `spack env activate --sh .` && | |
mkdir build && cd build && | |
cmake .. -DENABLE_COVERAGE=ON \ | |
-DENABLE_TESTS=ON \ | |
-DENABLE_EXAMPLES=ON \ | |
-DENABLE_BEDROCK=ON \ | |
-DCMAKE_BUILD_TYPE=Debug && | |
make && make test | |
- name: Send coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true | |
verbose: true | |
gcov: true |