Skip to content

Commit 4352622

Browse files
committed
Fix shared library build
1 parent 4ff6a7b commit 4352622

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,16 +267,17 @@ jobs:
267267

268268
build_shared_library:
269269
docker:
270-
- image: cimg/rust:1.81.0
270+
# libwasmvm versions built with 1.81 are broken, so we use 1.82 here
271+
- image: cimg/rust:1.82.0
271272
steps:
272273
- checkout
273274
- run:
274275
name: Show version information
275276
command: rustc --version; cargo --version; rustup --version
276277
- restore_cache:
277278
keys:
278-
- cargocache-v3-build_shared_library-rust:1.81.0-{{ checksum "libwasmvm/Cargo.lock" }}
279-
- cargocache-v3-build_shared_library-rust:1.81.0-
279+
- cargocache-v3-build_shared_library-rust:1.82.0-{{ checksum "libwasmvm/Cargo.lock" }}
280+
- cargocache-v3-build_shared_library-rust:1.82.0-
280281
- run:
281282
name: Create release build of libwasmvm
282283
command: make build-libwasmvm

0 commit comments

Comments
 (0)