forked from peverwhee/history_output
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 929 Bytes
/
unit-test.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
name: unit-test
on:
push:
branch: unit-testing
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
gcc:
runs-on: ubuntu-latest
steps:
- name: Checkout history
uses: actions/checkout@v4
- name: Build pFUnit
run: |
git clone --depth 1 --branch v4.10.0 https://github.com/Goddard-Fortran-Ecosystem/pFUnit.git
cd pFUnit
cmake -B./build -S.
cd build
make install
- name: Build history
run: |
cmake \
-DCMAKE_PREFIX_PATH=/home/runner/work/history_output/history_output/pFUnit/build/installed \
-DHISTORY_ENABLE_TESTS=ON \
-B./build \
-S.
cd build
make
- name: Run tests
run: |
cd build && ctest -V --output-junit res.xml