Skip to content

Commit b3fbe1d

Browse files
committed
Fix link toolchain
1 parent 577068a commit b3fbe1d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/nightly_rustc.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,14 @@ jobs:
6666
./x build --host=${{ matrix.arch.host_target }} --stage 2 --config ../rustc_codegen_gcc/tests/bootstraps/bootstrap.${{ matrix.arch.host_target }}.toml
6767
6868
- name: Link toolchain
69-
run: rustup toolchain link my-toolchain build/${{ matrix.arch.host_target }}/stage2
69+
run: |
70+
cd rust
71+
ls
72+
echo ****
73+
ls build
74+
echo ****
75+
ls build/${{ matrix.arch.host_target }}
76+
rustup toolchain link my-toolchain build/${{ matrix.arch.host_target }}/stage2
7077
7178
- name: Smoke test
7279
run: |

0 commit comments

Comments
 (0)