-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (87 loc) · 2.64 KB
/
build.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- name: Set up miniconda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
auto-update-conda: false
channels: andrsd,defaults
- name: Checkout source
uses: actions/checkout@v4
- name: Install dependencies
run: |
conda install \
cmake \
make \
mpich-mpicxx \
exodusii==2022.08.01 \
fmt==9.1.0 \
yaml-cpp==0.8.0 \
lcov
- name: Configure
run: |
cmake -S . -B ${{ github.workspace }}/build \
-DEXODUSIICPP_LIBRARY_TYPE=SHARED \
-DEXODUSIICPP_BUILD_TESTS=YES \
-DEXODUSIICPP_CODE_COVERAGE=YES
- name: Build
run: make -C ${{ github.workspace }}/build
- name: Run tests
run: |
echo "### Test results" >> $GITHUB_STEP_SUMMARY
ctest --test-dir ${{ github.workspace }}/build -O test.log
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
awk 's;/^\[HANDLER_OUTPUT\]/{s=1}' test.log >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
- name: Upload test result
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}
path: ${{ github.workspace }}/build/Testing/Temporary/LastTest.log
- name: Generate code coverage
if: startsWith(matrix.os, 'ubuntu')
run: |
make -C ${{ github.workspace }}/build coverage
- name: Upload coverage artifact
if: startsWith(matrix.os, 'ubuntu')
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.os }}
path: ${{ github.workspace }}/build/coverage.info
upload-to-codecov:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: 'coverage-ubuntu-22.04/coverage.info'