-
Notifications
You must be signed in to change notification settings - Fork 28
180 lines (160 loc) · 5.11 KB
/
ci.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
---
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 0 15 * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: true}
- name: Install netCDF
run: sudo apt-get update && sudo apt-get install libnetcdf-dev
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt -- --check
- name: Documentation
run: cargo doc --workspace --features netcdf/derive
- name: Clippy
run: cargo clippy --features netcdf/derive --workspace -- -D warnings
test_apt:
name: test apt
runs-on: ubuntu-latest
strategy:
matrix:
build:
- stable
- beta
- nightly
include:
- build: stable
rust: stable
- build: beta
rust: beta
- build: nightly
rust: nightly
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: false}
- name: Install netcdf
run: sudo apt-get update && sudo apt-get install libnetcdf-dev
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: Build
run: cargo build --verbose --features netcdf/derive --workspace --exclude netcdf-src
- name: Test
run: cargo test --verbose --features netcdf/derive --workspace --exclude netcdf-src --exclude netcdf-derive
conda:
name: conda
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
include:
- {os: ubuntu, channel: conda-forge, rust: stable}
- {os: windows, channel: conda-forge, rust: stable}
- {os: macos, channel: conda-forge, rust: stable}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: false}
- name: Install Rust (${{matrix.rust}})
uses: dtolnay/rust-toolchain@stable
with: {toolchain: '${{matrix.rust}}'}
- name: Install conda
uses: conda-incubator/setup-miniconda@v3
with: {auto-update-conda: false, activate-environment: testenv}
- name: Install netCDF
run: conda install -y -c ${{matrix.channel}} libnetcdf=4.8.1
- name: Build and test
run: |
export HDF5_DIR="$CONDA_PREFIX"
export NETCDF_DIR="$CONDA_PREFIX"
[ "${{runner.os}}" != "Windows" ] && export RUSTFLAGS="-C link-args=-Wl,-rpath,$CONDA_PREFIX/lib"
cargo test -vv --workspace --exclude netcdf-src --exclude netcdf-derive --features netcdf/derive
static_builds:
name: static builds
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
include:
- {os: ubuntu-latest, rust: stable}
- {os: windows-latest, rust: stable-msvc}
- {os: windows-latest, rust: stable-gnu}
- {os: macos-12, rust: stable}
- {os: macos-latest, rust: stable}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: true}
- name: Install Rust (${{matrix.rust}})
uses: dtolnay/rust-toolchain@stable
with: {toolchain: '${{matrix.rust}}'}
- name: Build and test
run: cargo test -vv --features netcdf/derive,static --workspace --exclude netcdf-derive
addr_san:
name: Address sanitizer
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: true}
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with: {toolchain: nightly}
- name: Run test with sanitizer
env:
RUSTFLAGS: "-Z sanitizer=address"
RUSTDOCFLAGS: "-Z sanitizer=address"
run: cargo test --features netcdf-sys/static,netcdf/derive --target x86_64-unknown-linux-gnu --workspace --exclude netcdf-derive
mpi:
name: mpi-runner
runs-on: ubuntu-latest
env:
NETCDF_DIR: /usr/lib/x86_64-linux-gnu/netcdf/mpi/
steps:
- name: Checkout repository
uses: actions/checkout@v4
with: {submodules: false}
- name: Install netcdf
run: sudo apt-get update && sudo apt-get install libnetcdf-mpi-dev libhdf5-openmpi-dev
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "nightly"
- name: Build
run: cargo build --verbose --workspace --exclude netcdf-src --features netcdf/mpi,derive
- name: Test
run: cargo test --verbose --workspace --exclude netcdf-src --features netcdf/mpi,derive
- name: Run example
run: cargo run --verbose --package netcdf-examples --features mpi
- name: Run example in parallel
run: mpirun -np 10 --oversubscribe -- target/debug/netcdf-examples