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
Auto merge of #153684 - cuviper:min-llvm-21, r=nikic
Update the minimum external LLVM to 21
With this change, we'll have stable support for LLVM 21 and 22.
For reference, the previous increase to LLVM 20 was #145071.
cc @rust-lang/wg-llvm
r? nikic
Copy file name to clipboardExpand all lines: src/ci/docker/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ To run a specific CI job locally, you can use the `citool` Rust crate:
14
14
cargo run --manifest-path src/ci/citool/Cargo.toml run-local <job-name>
15
15
```
16
16
17
-
For example, to run the `x86_64-gnu-llvm-20-1` job:
17
+
For example, to run the `x86_64-gnu-llvm-21-1` job:
18
18
```
19
-
cargo run --manifest-path src/ci/citool/Cargo.toml run-local x86_64-gnu-llvm-20-1
19
+
cargo run --manifest-path src/ci/citool/Cargo.toml run-local x86_64-gnu-llvm-21-1
20
20
```
21
21
22
22
The job will output artifacts in an `obj/<image-name>` dir at the root of a repository. Note
@@ -27,10 +27,10 @@ Docker image executed in the given CI job.
27
27
while locally, to the `obj/<image-name>` directory. This is primarily to prevent
28
28
strange linker errors when using multiple Docker images.
29
29
30
-
For some Linux workflows (for example `x86_64-gnu-llvm-20-N`), the process is more involved. You will need to see which script is executed for the given workflow inside the [`jobs.yml`](../github-actions/jobs.yml) file and pass it through the `DOCKER_SCRIPT` environment variable. For example, to reproduce the `x86_64-gnu-llvm-20-3` workflow, you can run the following script:
30
+
For some Linux workflows (for example `x86_64-gnu-llvm-21-N`), the process is more involved. You will need to see which script is executed for the given workflow inside the [`jobs.yml`](../github-actions/jobs.yml) file and pass it through the `DOCKER_SCRIPT` environment variable. For example, to reproduce the `x86_64-gnu-llvm-21-3` workflow, you can run the following script:
0 commit comments