File tree 1 file changed +31
-6
lines changed
1 file changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -387,14 +387,39 @@ jobs:
387
387
if : endsWith(matrix.target, '-wasi')
388
388
run : |
389
389
set +x
390
- for name in gix-sec; do
391
- (cd -- "$name " && cargo build --target "$TARGET")
390
+ for crate in gix-sec; do
391
+ (cd -- "$crate " && cargo build --target "$TARGET")
392
392
done
393
393
- name : crates without feature toggles
394
394
run : |
395
+ crates=(
396
+ gix-actor
397
+ gix-attributes
398
+ gix-bitmap
399
+ gix-chunk
400
+ gix-command
401
+ gix-commitgraph
402
+ gix-config-value
403
+ gix-date
404
+ gix-glob
405
+ gix-hash
406
+ gix-hashtable
407
+ gix-mailmap
408
+ gix-object
409
+ gix-packetline
410
+ gix-path
411
+ gix-pathspec
412
+ gix-prompt
413
+ gix-quote
414
+ gix-refspec
415
+ gix-revision
416
+ gix-traverse
417
+ gix-url
418
+ gix-validate
419
+ )
395
420
set +x
396
- for name in gix-actor gix-attributes gix-bitmap gix-chunk gix-command gix-commitgraph gix-config-value gix-date gix-glob gix-hash gix-hashtable gix-mailmap gix-object gix-packetline gix-path gix-pathspec gix-prompt gix-quote gix-refspec gix-revision gix-traverse gix-url gix-validate ; do
397
- (cd -- "$name " && cargo build --target "$TARGET")
421
+ for crate in "${crates[@]}" ; do
422
+ (cd -- "$crate " && cargo build --target "$TARGET")
398
423
done
399
424
- name : features of gix-features
400
425
run : |
@@ -405,8 +430,8 @@ jobs:
405
430
- name : crates with 'wasm' feature
406
431
run : |
407
432
set +x
408
- for name in gix-pack; do
409
- (cd -- "$name " && cargo build --features wasm --target "$TARGET")
433
+ for crate in gix-pack; do
434
+ (cd -- "$crate " && cargo build --features wasm --target "$TARGET")
410
435
done
411
436
- name : gix-pack with all features (including wasm)
412
437
run : cd gix-pack && cargo build --all-features --target "$TARGET"
You can’t perform that action at this time.
0 commit comments