File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
# Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
11
11
# This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
12
- distro : [ "debian:bullseye ", "fedora:39" ]
12
+ distro : [ "debian:bookworm ", "fedora:39" ]
13
13
runs-on : ubuntu-latest
14
14
container : ${{ matrix.distro }}
15
15
env :
16
16
TOOLCHAIN : stable
17
17
steps :
18
18
- name : Install native Rust toolchain, Valgrind, and build utilitis
19
- if : " matrix.distro == 'debian:bullseye '"
19
+ if : " matrix.distro == 'debian:bookworm '"
20
20
run : |
21
21
apt-get update
22
22
apt-get -y dist-upgrade
23
- apt-get -y install cargo libstd-rust-dev-wasm32 valgrind lld git g++ clang wget
23
+ apt-get -y install cargo libstd-rust-dev-wasm32 wasi-libc valgrind lld git g++ clang wget
24
24
- name : Install native Rust toolchain, Valgrind, and build utilitis
25
25
if : " matrix.distro == 'fedora:39'"
26
26
run : |
48
48
cd rust-lightning
49
49
git checkout 0.0.121-bindings
50
50
- name : Pin memchr
51
- if : " matrix.distro == 'debian:bullseye '"
51
+ if : " matrix.distro == 'debian:bookworm '"
52
52
run : |
53
53
# Pin memchr until we can remove it
54
54
cd rust-lightning
You can’t perform that action at this time.
0 commit comments