Skip to content

Commit 6acdc04

Browse files
authored
Merge pull request #1992 from EliahKagan/run-ci/ouroboros
Let `gix-testtools` use `gix-*` workspace crates
2 parents bcdcba3 + 2894fc9 commit 6acdc04

File tree

4 files changed

+352
-739
lines changed

4 files changed

+352
-739
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ jobs:
370370
run: |
371371
set +x
372372
for crate in gix-sec; do
373-
(cd -- "$crate" && cargo build --target "$TARGET")
373+
cargo build -p "$crate" --target "$TARGET"
374374
done
375375
- name: crates without feature toggles
376376
run: |
@@ -401,22 +401,22 @@ jobs:
401401
)
402402
set +x
403403
for crate in "${crates[@]}"; do
404-
(cd -- "$crate" && cargo build --target "$TARGET")
404+
cargo build -p "$crate" --target "$TARGET"
405405
done
406406
- name: features of gix-features
407407
run: |
408408
set +x
409409
for feature in progress parallel io-pipe crc32 zlib cache-efficiency-debug; do
410-
(cd gix-features && cargo build --features "$feature" --target "$TARGET")
410+
cargo build -p gix-features --features "$feature" --target "$TARGET"
411411
done
412412
- name: crates with 'wasm' feature
413413
run: |
414414
set +x
415415
for crate in gix-pack; do
416-
(cd -- "$crate" && cargo build --features wasm --target "$TARGET")
416+
cargo build -p "$crate" --features wasm --target "$TARGET"
417417
done
418418
- name: gix-pack with all features (including wasm)
419-
run: cd gix-pack && cargo build --all-features --target "$TARGET"
419+
run: cargo build -p gix-pack --all-features --target "$TARGET"
420420

421421
check-packetline:
422422
strategy:

0 commit comments

Comments
 (0)