Skip to content

Commit cb540a8

Browse files
committed
Add set -x where set +x had been erroneously used
`set +x` is the default (in general, as well as in GitHub Actions unless the value of `shell` is modified with `-x` or `-o xtrace`). What is needed to distinguish which command from which iterations of the loops in the WASM jobs' steps' output is `set -x`.
1 parent 2468b2e commit cb540a8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ jobs:
416416
- name: 'WASI only: crates without feature toggle'
417417
if: endsWith(matrix.target, '-wasi')
418418
run: |
419+
set -x
419420
for crate in gix-sec; do
420421
cargo build -p "$crate" --target "$TARGET"
421422
done
@@ -446,16 +447,19 @@ jobs:
446447
gix-url
447448
gix-validate
448449
)
450+
set -x
449451
for crate in "${crates[@]}"; do
450452
cargo build -p "$crate" --target "$TARGET"
451453
done
452454
- name: features of gix-features
453455
run: |
456+
set -x
454457
for feature in progress parallel io-pipe crc32 zlib cache-efficiency-debug; do
455458
cargo build -p gix-features --features "$feature" --target "$TARGET"
456459
done
457460
- name: crates with 'wasm' feature
458461
run: |
462+
set -x
459463
cargo build -p gix-diff --no-default-features --features wasm --target "$TARGET"
460464
cargo build -p gix-pack --features wasm --target "$TARGET"
461465
- name: gix-pack with all features (including wasm)

0 commit comments

Comments
 (0)