Skip to content

Commit 2468b2e

Browse files
committed
Drop set +x in CI WASM steps
It seems like it was intended to be `set -x`, but let's first see if it is doing something important by checking for any change when removing it.
1 parent 89e1f4c commit 2468b2e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,6 @@ jobs:
416416
- name: 'WASI only: crates without feature toggle'
417417
if: endsWith(matrix.target, '-wasi')
418418
run: |
419-
set +x
420419
for crate in gix-sec; do
421420
cargo build -p "$crate" --target "$TARGET"
422421
done
@@ -447,19 +446,16 @@ jobs:
447446
gix-url
448447
gix-validate
449448
)
450-
set +x
451449
for crate in "${crates[@]}"; do
452450
cargo build -p "$crate" --target "$TARGET"
453451
done
454452
- name: features of gix-features
455453
run: |
456-
set +x
457454
for feature in progress parallel io-pipe crc32 zlib cache-efficiency-debug; do
458455
cargo build -p gix-features --features "$feature" --target "$TARGET"
459456
done
460457
- name: crates with 'wasm' feature
461458
run: |
462-
set +x
463459
cargo build -p gix-diff --no-default-features --features wasm --target "$TARGET"
464460
cargo build -p gix-pack --features wasm --target "$TARGET"
465461
- name: gix-pack with all features (including wasm)

0 commit comments

Comments
 (0)