File tree 4 files changed +352
-739
lines changed
4 files changed +352
-739
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ jobs:
370
370
run : |
371
371
set +x
372
372
for crate in gix-sec; do
373
- (cd -- "$crate" && cargo build --target "$TARGET")
373
+ cargo build -p "$crate" --target "$TARGET"
374
374
done
375
375
- name : crates without feature toggles
376
376
run : |
@@ -401,22 +401,22 @@ jobs:
401
401
)
402
402
set +x
403
403
for crate in "${crates[@]}"; do
404
- (cd -- "$crate" && cargo build --target "$TARGET")
404
+ cargo build -p "$crate" --target "$TARGET"
405
405
done
406
406
- name : features of gix-features
407
407
run : |
408
408
set +x
409
409
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"
411
411
done
412
412
- name : crates with 'wasm' feature
413
413
run : |
414
414
set +x
415
415
for crate in gix-pack; do
416
- (cd -- "$crate" && cargo build --features wasm --target "$TARGET")
416
+ cargo build -p "$crate" --features wasm --target "$TARGET"
417
417
done
418
418
- 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"
420
420
421
421
check-packetline :
422
422
strategy :
You can’t perform that action at this time.
0 commit comments