-
Notifications
You must be signed in to change notification settings - Fork 13
58 lines (48 loc) · 1.21 KB
/
unittests.yaml
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
name: Unit Tests
on: [push, pull_request]
jobs:
ctests:
runs-on: ubuntu-22.04
name: Run Unit Tests with ctest
steps:
- name: Install pip dependencies
run: |
pip install --upgrade pip
pip install pycodestyle
pip install netCDF4
pip install xarray
- name: Checkout wxflow
uses: actions/checkout@v3
with:
repository: NOAA-EMC/wxflow
ref: develop
path: wxflow
- name: Install wxflow
run: |
cd wxflow
pip install .
- name: Checkout
uses: actions/checkout@v2
with:
path: RDASApp
- name: Install ecBuild
run: |
git clone https://github.com/ecmwf/ecbuild.git ecbuild
cd ecbuild
git checkout 3.6.1
mkdir bootstrap
cd bootstrap
../bin/ecbuild ..
sudo make install
- name: Configure with cmake
run: |
mkdir $GITHUB_WORKSPACE/build && cd $GITHUB_WORKSPACE/build
cmake -DBUILD_RDASBUNDLE=OFF $GITHUB_WORKSPACE/RDASApp
- name: Build RDASApp
run: |
cd $GITHUB_WORKSPACE/build
make
- name: Run ctest
run: |
cd $GITHUB_WORKSPACE/build
ctest --output-on-failure