Skip to content

Commit 0743764

Browse files
committed
remove redundant flags
1 parent 4588f5f commit 0743764

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci-rs.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ jobs:
9393
- name: Install CapnProto
9494
run: sudo apt-get install -y capnproto
9595
- name: Build benchmarks with no features
96-
run: cargo bench --verbose --no-run --workspace --exclude hugr-llvm --no-default-features
96+
run: cargo bench --verbose --no-run --no-default-features
9797
- name: Build benchmarks with all features
98-
run: cargo bench --verbose --no-run --workspace --exclude hugr-llvm --all-features
98+
run: cargo bench --verbose --no-run --all-features
9999

100100
# Run tests on Rust stable
101101
tests-stable-no-features:
@@ -116,9 +116,9 @@ jobs:
116116
- name: Install CapnProto
117117
run: sudo apt-get install -y capnproto
118118
- name: Build with no features
119-
run: cargo test --verbose --workspace --exclude hugr-llvm --no-default-features --no-run
119+
run: cargo test --verbose --no-default-features --no-run
120120
- name: Tests with no features
121-
run: cargo test --verbose --workspace --exclude hugr-llvm --no-default-features
121+
run: cargo test --verbose --no-default-features
122122

123123
# Run tests on Rust stable
124124
tests-stable-all-features:
@@ -139,9 +139,9 @@ jobs:
139139
- name: Install CapnProto
140140
run: sudo apt-get install -y capnproto
141141
- name: Build with all features
142-
run: cargo test --verbose --workspace --exclude hugr-llvm --all-features --no-run
142+
run: cargo test --verbose --all-features --no-run
143143
- name: Tests with all features
144-
run: cargo test --verbose --workspace --exclude hugr-llvm --all-features
144+
run: cargo test --verbose --all-features
145145
- name: Build HUGR binary
146146
run: cargo build -p hugr-cli
147147
- name: Upload the binary to the artifacts
@@ -174,13 +174,13 @@ jobs:
174174
- name: Install CapnProto
175175
run: sudo apt-get install -y capnproto
176176
- name: Build with no features
177-
run: cargo test --verbose --workspace --exclude hugr-llvm --no-default-features --no-run
177+
run: cargo test --verbose --no-default-features --no-run
178178
- name: Tests with no features
179-
run: cargo test --verbose --workspace --exclude hugr-llvm --no-default-features
179+
run: cargo test --verbose --no-default-features
180180
- name: Build with all features
181-
run: cargo test --verbose --workspace --exclude hugr-llvm --all-features --no-run
181+
run: cargo test --verbose --all-features --no-run
182182
- name: Tests with all features
183-
run: cargo test --verbose --workspace --exclude hugr-llvm --all-features
183+
run: cargo test --verbose --all-features
184184

185185
# Ensure that serialized extensions match rust implementation
186186
std-extensions:
@@ -229,8 +229,8 @@ jobs:
229229
- name: Run tests with coverage instrumentation
230230
run: |
231231
cargo llvm-cov clean --workspace
232-
cargo llvm-cov --no-report --workspace --exclude hugr-llvm --no-default-features --doctests
233-
cargo llvm-cov --no-report --workspace --exclude hugr-llvm --all-features --doctests
232+
cargo llvm-cov --no-report --no-default-features --doctests
233+
cargo llvm-cov --no-report --all-features --doctests
234234
- name: Generate coverage report
235235
run: cargo llvm-cov --all-features report --codecov --output-path coverage.json
236236
- name: Upload coverage to codecov.io

0 commit comments

Comments
 (0)