Skip to content

Commit daa7bcf

Browse files
committed
fix CI
1 parent 7945909 commit daa7bcf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,18 @@ jobs:
1717
steps:
1818
- uses: ConorMacBride/install-package@v1
1919
with:
20-
apt: libpango1.0-dev libgtk-4-dev liblua5.4-dev lua5.4
20+
apt: liblua5.4-dev lua5.4 libtinfo5
2121

2222
- uses: KyleMayes/install-llvm-action@v2
2323
with:
2424
version: "18"
2525
directory: ${{ runner.temp }}/llvm-18
2626

2727
- uses: actions/checkout@v3
28+
29+
- name: Test
30+
run: |
31+
/home/runner/work/_temp/llvm-18/bin/llvm-config --version
2832
- name: Build
2933
run: cargo build --verbose
3034
env:

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ quick-xml = { version = "*", features = ["serialize"] }
3838
[build-dependencies]
3939
cbindgen = "*"
4040
lalrpop = { version = "*", optional = true }
41-
llvm-sys = { version = "180", optional = true, features = ["prefer-dynamic"] }
41+
llvm-sys = { version = "180", optional = true, features = ["prefer-dynamic", "no-llvm-linking"] }
4242

4343
[features]
4444
default = ["lua_backend", "lalrpop_parser"]

0 commit comments

Comments
 (0)