You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/infra/docs/rustc-ci.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -132,6 +132,18 @@ same time, even if there is a normal PR in progress.
132
132
133
133
You can see the CI configuration for try builds [here](https://github.com/rust-lang/rust/blob/9d46c7a3e69966782e163877151c1f0cea8b630a/src/ci/github-actions/ci.yml#L728-L741).
134
134
135
+
If you want to perform a try build with a different configuration (e.g. try to
136
+
perform a compiler build for a different architecture), you can temporarily change
137
+
the `try` CI job in your PR:
138
+
139
+
1) Open `src/ci/github-actions/ci.yml`
140
+
2) Find the CI job that you want to run (e.g. `dist-aarch64-linux`)
141
+
3) Copy-paste the entry of the CI job
142
+
4) Find the `try:` job in the file
143
+
5) Replace the `dist-x86_64-linux` job in the matrix with the copied entry from step 3)
144
+
6) Run `python3 x.py run src/tools/expand-yaml-anchors`
145
+
7) Push your changes and start a try build with `@bors try`
0 commit comments