Skip to content

Commit

Permalink
👷 ci: use LLVM 18 in CI workflow (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo authored Oct 15, 2024
1 parent 7f64b80 commit 8a82e4e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rcalc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ on:

env:
CARGO_TERM_COLOR: always
LLVM_VERSION: 17.0
LLVM_VERSION: 18.1

jobs:
test-rcalc:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04 # For LLVM18
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update rust toolchain
run: rustup update
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2.0.5
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ env.LLVM_VERSION }}
- name: Cache cargo build
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jit = ["inkwell"]

[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
inkwell = { version = "0.5.0", features = ["llvm17-0"], optional = true }
inkwell = { version = "0.5.0", features = ["llvm18-0"], optional = true }
peg = "0.8.3"

0 comments on commit 8a82e4e

Please sign in to comment.