Skip to content

Commit f1f994a

Browse files
committed
Ci: Disable set -e o pipefail for commands that are expeted to return non-zero exit code
1 parent 5063af7 commit f1f994a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ jobs:
100100
run: |
101101
qemu-system-x86_64 -drive format=raw,file=target/x86_64-bootimage-example-kernels/debug/bootimage-basic.bin -device isa-debug-exit,iobase=0xf4,iosize=0x04 -display none
102102
if [ $? -eq 103 ]; then (exit 0); else (exit 1); fi
103-
shell: bash
103+
shell: bash {0}
104104
working-directory: example-kernels
105105

106106
- name: 'Run `cargo xrun` for "runner" kernel'
107107
run: |
108108
cargo xrun
109109
if [ $? -eq 109 ]; then (exit 0); else (exit 1); fi
110-
shell: bash
110+
shell: bash {0}
111111
working-directory: example-kernels/runner
112112

113113
- run: cargo xtest -Z doctest-xcompile

0 commit comments

Comments
 (0)