File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,31 @@ jobs:
185
185
run : cargo test --workspace -v --features conda --exclude hdf5-derive
186
186
187
187
188
+ conda_dl :
189
+ name : static
190
+ runs-on : ${{matrix.os}}-latest
191
+ strategy :
192
+ fail-fast : false
193
+ matrix :
194
+ include :
195
+ - {os: ubuntu, rust: stable}
196
+ - {os: windows, rust: stable-msvc}
197
+ - {os: windows, rust: stable-gnu}
198
+ - {os: macos, rust: stable}
199
+ steps :
200
+ - name : Checkout repository
201
+ uses : actions/checkout@v2
202
+ with : {submodules: true}
203
+ - name : Change to older toolchain
204
+ if : matrix.os == 'macos'
205
+ run : sudo xcode-select -s "/Applications/Xcode_11.7.app"
206
+ - name : Install Rust (${{matrix.rust}})
207
+ uses : actions-rs/toolchain@v1
208
+ with : {toolchain: '${{matrix.rust}}', profile: minimal, override: true}
209
+ - name : Build and test all crates
210
+ run : cargo test --workspace -v --features conda --exclude hdf5-derive
211
+
212
+
188
213
apt :
189
214
name : apt
190
215
runs-on : ubuntu-${{matrix.ubuntu}}
You can’t perform that action at this time.
0 commit comments