Skip to content

Commit f7cfb8f

Browse files
committed
Fix link toolchain
1 parent 1936dd3 commit f7cfb8f

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
@@ -67,7 +67,14 @@ jobs:
6767
./x build --stage 2 --config ../rustc_codegen_gcc/tests/bootstraps/bootstrap.${{ matrix.arch.host_target }}.toml
6868
6969
- name: Link toolchain
70-
run: rustup toolchain link my-toolchain build/${{ matrix.arch.host_target }}/stage2
70+
run: |
71+
cd rust
72+
ls
73+
echo ****
74+
ls build
75+
echo ****
76+
ls build/${{ matrix.arch.host_target }}
77+
rustup toolchain link my-toolchain build/${{ matrix.arch.host_target }}/stage2
7178
7279
- name: Smoke test
7380
run: |

0 commit comments

Comments
 (0)