Skip to content

Commit b825691

Browse files
committed
fixup! Compile program in the nightly CI
1 parent 154d809 commit b825691

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/nightly_rustc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,19 @@ jobs:
109109
run: |
110110
cd rustc_codegen_gcc/tests/hello-world
111111
cargo +my-toolchain build
112+
echo "*** 1"
112113
cargo +my-toolchain run > hello_world_stdout
113114
115+
echo "*** 2"
116+
echo hello_world_stdout
117+
114118
expected_output="40"
115119
test $(cat hello_world_stdout) == $expected_output || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
116120
121+
echo "*** 3"
122+
117123
objcopy --dump-section .comment=comment target/debug/hello_world
118124
grep --text "^.rustc version .* with libgccjit" comment
119125
grep --text 'libgccjit' comment
120126
grep --text 'GCC: ' comment
127+
echo "*** 4"

0 commit comments

Comments
 (0)