Skip to content

Commit 68f8148

Browse files
⬆️ deps: Update some dependencies and update runner to ubuntu 22.04 (#205)
--------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: SigureMo <sigure.qaq@gmail.com>
1 parent 79d6e8c commit 68f8148

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

.github/workflows/rcalc-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,20 @@ env:
1313

1414
jobs:
1515
test-rcalc:
16-
runs-on: ubuntu-20.04 # For LLVM18
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
20+
- name: Install Dependencies
21+
run: sudo apt update && sudo apt install -y libtinfo5
2022
- name: Update rust toolchain
2123
run: rustup update
2224
- name: Install LLVM and Clang
2325
uses: KyleMayes/install-llvm-action@v2
2426
with:
2527
version: ${{ env.LLVM_VERSION }}
28+
- name: Run llvm-config
29+
run: llvm-config --version --bindir --libdir
2630
- name: Cache cargo build
2731
uses: actions/cache@v4
2832
id: cargo-cache

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ edition = "2021"
1010
jit = ["inkwell"]
1111

1212
[dependencies]
13-
clap = { version = "4.5.4", features = ["derive"] }
14-
inkwell = { version = "0.5.0", features = ["llvm18-0"], optional = true }
15-
peg = "0.8.3"
13+
clap = { version = "4.5.38", features = ["derive"] }
14+
inkwell = { version = "0.6.0", features = ["llvm18-1"], optional = true }
15+
peg = "0.8.5"

0 commit comments

Comments
 (0)