Merge pull request #703 from tgross35/upgrade-llvm-version

Upgrade CI LLVM version to 19.1
This commit is contained in:
Trevor Gross 2024-10-03 11:57:25 -04:00 committed by GitHub
commit f4bde3fdc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ on: [push, pull_request]
env:
RUSTDOCFLAGS: -Dwarnings
RUSTFLAGS: -Dwarnings
RUST_LLVM_VERSION: 18.0-2024-02-13
RUST_LLVM_VERSION: 19.1-2024-09-17
RUST_COMPILER_RT_ROOT: ./compiler-rt
jobs:

View file

@ -89,8 +89,8 @@ to test against, located in a directory called `compiler-rt`. This can be
obtained with the following:
```sh
curl -L -o rustc-llvm-18.0.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/18.0-2024-02-13.tar.gz
tar xzf rustc-llvm-18.0.tar.gz --strip-components 1 llvm-project-rustc-18.0-2024-02-13/compiler-rt
curl -L -o rustc-llvm-19.1.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/19.1-2024-09-17.tar.gz
tar xzf rustc-llvm-19.1.tar.gz --strip-components 1 llvm-project-rustc-19.1-2024-09-17/compiler-rt
```
Local targets may also be tested with `./ci/run.sh [target]`.