Skip to content

Commit 885a368

Browse files
authored
Merge pull request #14 conda_feb2021
Merge changes from conda_feb2021 into conda_nov2021.
2 parents 4f06166 + f0b6d7d commit 885a368

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,31 @@ jobs:
185185
run: cargo test --workspace -v --features conda --exclude hdf5-derive
186186

187187

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+
188213
apt:
189214
name: apt
190215
runs-on: ubuntu-${{matrix.ubuntu}}

0 commit comments

Comments
 (0)