We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e459819 commit 034ea61Copy full SHA for 034ea61
1 file changed
.github/workflows/nightly_rustc.yml
@@ -153,12 +153,13 @@ jobs:
153
echo 3 vm/home
154
ls vm/home
155
echo ****
156
- sudo rsync -a --exclude=stage2/lib/rustlib/src --exclude=stage2/lib/rustlib/rustc-src/ rust/build/m68k-unknown-linux-gnu/stage2 vm/home/stage2
+ sudo rsync -a --exclude=stage2/lib/rustlib/src --exclude=stage2/lib/rustlib/rustc-src/ rust/build/${{ matrix.arch.host_target }}/stage2 vm/home/stage2
157
158
- name: Smoke test
159
if: ${{ matrix.arch.cross_target != '' }}
160
run: |
161
- sudo chroot vm qemu-m68k-static /home/stage2/rustc > output
+ sudo chroot vm qemu-${{ matrix.arch.cross_target }}-static /bin/sh -c '/home/stage2/rustc' > output
162
+ echo output
163
grep rustc output
164
165
- name: Compile test program
0 commit comments