Skip to content

Commit

Permalink
bump CI llvm version to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy authored and davidtwco committed Aug 6, 2024
1 parent 36b35b9 commit 8962694
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- name: Install LLVM
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main"
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main"
sudo apt-get update
sudo apt-get install --no-install-recommends --yes llvm-13 llvm-13-tools
sudo apt-get install --no-install-recommends --yes llvm-15 llvm-15-tools
- name: Install lit
run: pip install lit
- name: Run lit testsuite
run: lit -v --path "$PWD/target/release/:/usr/lib/llvm-13/bin/" ./tests
run: lit -v --path "$PWD/target/release/:/usr/lib/llvm-15/bin/" ./tests

fmt:
name: rustfmt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $ cargo build
To run the tests, first install the relevant dependencies:

```shell-session
$ apt install --no-install-recommends --yes llvm-13 llvm-13-tools
$ apt install --no-install-recommends --yes llvm-15 llvm-15-tools
$ pip install lit
```

Expand Down

0 comments on commit 8962694

Please sign in to comment.