We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1e9b7 commit 21c8639Copy full SHA for 21c8639
1 file changed
.github/workflows/m68k.yml
@@ -113,7 +113,8 @@ jobs:
113
CG_RUSTFLAGS="-Clinker=m68k-unknown-linux-gnu-gcc" ../../y.sh cargo build --target m68k-unknown-linux-gnu
114
sudo cp target/m68k-unknown-linux-gnu/debug/hello_world $vm_dir/home/
115
sudo chroot $vm_dir qemu-m68k-static /home/hello_world > hello_world_stdout
116
- test $(cat hello_world_stdout) == "Hello, world!" || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
+ expected_output="40"
117
+ test $(cat hello_world_stdout) == $expected_output || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
118
119
# Summary job for the merge queue.
120
# ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
0 commit comments