-
Notifications
You must be signed in to change notification settings - Fork 17
61 lines (53 loc) · 1.59 KB
/
docs.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
# This is a GitHub actions workflow for NCEPLIBS-g2.
#
# This builds the develop branch with documentation.
#
# Ed Hartnett, 1/21/25
name: docs
on:
push:
branches:
- develop
pull_request:
branches:
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
env:
FC: gfortran
CC: gcc
LD_LIBRARY_PATH: /home/runner/work/NCEPLIBS-g2/NCEPLIBS-g2/nceplibs/jasper/lib/
strategy:
fail-fast: true
steps:
- name: install-dependencies
run: |
sudo apt-get update
sudo apt-get install libpng-dev zlib1g-dev libjpeg-dev libblas-dev liblapack-dev libaec-dev doxygen
- name: "Build dependencies"
uses: NOAA-EMC/ci-build-nceplibs@develop
with:
bacio-version: develop
w3emc-version: develop
jasper-version: version-4.0.0
w3emc-cmake-args: -DBUILD_WITH_BUFR=OFF
ip-version: develop
g2c-version: develop
g2c-cmake-args: -DBUILD_G2C=ON -DUSE_AEC=ON
- name: checkout
uses: actions/checkout@v4
with:
path: g2
- name: docs
run: |
set -x
cd g2
mkdir build
cd build
cmake -DENABLE_DOCS=ON -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/nceplibs/jasper;$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-bacio;$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-w3emc;$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-ip;$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-g2c" ..
make -j2 VERBOSE=1
ctest --verbose --output-on-failure --rerun-failed