-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (41 loc) · 1.03 KB
/
codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Code coverage
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codecov:
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: 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` &&
./prepare.sh &&
./configure --enable-coverage --prefix=`pwd` &&
make check
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
gcov: true