Skip to content

Commit de3e491

Browse files
committed
Fix package name in CI exclude list
1 parent 9e5e513 commit de3e491

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install HDF5
3737
run: sudo apt-get update && sudo apt-get install libhdf5-dev
3838
- name: Run cargo ${{matrix.command}}
39-
run: cargo ${{matrix.command}} ${{matrix.command == 'fmt' && '--all -- --check' || '--workspace --exclude hdf5-src -- -D warnings -D clippy::cargo -A clippy::multiple-crate-versions'}}
39+
run: cargo ${{matrix.command}} ${{matrix.command == 'fmt' && '--all -- --check' || '--workspace --exclude hdf5-metno-src -- -D warnings -D clippy::cargo -A clippy::multiple-crate-versions'}}
4040

4141
doc: # This task should mirror the procedure on docs.rs
4242
runs-on: ubuntu-latest
@@ -152,9 +152,9 @@ jobs:
152152
uses: dtolnay/rust-toolchain@stable
153153
with: {toolchain: '${{matrix.rust}}'}
154154
- name: Build and test all crates
155-
run: cargo test --workspace -vvv --features hdf5-sys/static,hdf5-sys/zlib --exclude hdf5-derive
155+
run: cargo test --workspace -vvv --features hdf5-sys/static,hdf5-sys/zlib --exclude hdf5-metno-derive
156156
- name: Build and test with filters and other features
157-
run: cargo test --workspace -v --features hdf5-sys/static,hdf5-sys/zlib,lzf,blosc,f16,complex --exclude hdf5-derive
157+
run: cargo test --workspace -v --features hdf5-sys/static,hdf5-sys/zlib,lzf,blosc,f16,complex --exclude hdf5-metno-derive
158158
if: matrix.rust != 'stable-gnu'
159159
- name: Run examples
160160
run: |
@@ -282,7 +282,7 @@ jobs:
282282
with: {toolchain: "1.77"}
283283
- name: Build and test all crates
284284
run:
285-
cargo test --workspace -vv --features=hdf5-sys/static,hdf5-sys/zlib --exclude=hdf5-derive
285+
cargo test --workspace -vv --features=hdf5-sys/static,hdf5-sys/zlib --exclude=hdf5-metno-derive
286286

287287
# wine:
288288
# name: wine
@@ -299,7 +299,7 @@ jobs:
299299
# - name: Build and test
300300
# env:
301301
# CARGO_TARGET_X86_64_PC_WINDOWS_GNU_RUNNER: wine64
302-
# run: cargo test --workspace --features hdf5-sys/static --target x86_64-pc-windows-gnu --exclude=hdf5-derive
302+
# run: cargo test --workspace --features hdf5-sys/static --target x86_64-pc-windows-gnu --exclude=hdf5-metno-derive
303303

304304
addr_san:
305305
name: Address sanitizer
@@ -314,4 +314,4 @@ jobs:
314314
- name: Run test with sanitizer
315315
env:
316316
RUSTFLAGS: "-Z sanitizer=address"
317-
run: cargo test --features hdf5-sys/static --target x86_64-unknown-linux-gnu --workspace --exclude hdf5-derive
317+
run: cargo test --features hdf5-sys/static --target x86_64-unknown-linux-gnu --workspace --exclude hdf5-metno-derive

0 commit comments

Comments
 (0)