Skip to content

Commit

Permalink
Changing the LLVM version to 15 for the CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
Champii committed Sep 1, 2023
1 parent 0c3cbab commit dac4706
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,21 @@ env:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Install libpolly-15-dev
run: |
git clone --depth 1 https://github.com/llvm/llvm-project.git
cd llvm-project
mkdir build && cd build
cmake '-DLLVM_ENABLE_PROJECTS=clang;polly' ../llvm
cmake --build .
- name: Apt Update
run: |
sudo apt update
sudo apt install llvm-13 clang
sudo apt install llvm-15 clang
- name: Rust Cache
uses: Swatinem/[email protected]
Expand Down

0 comments on commit dac4706

Please sign in to comment.