File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -389,9 +389,8 @@ jobs:
389
389
mkdir artifacts
390
390
391
391
# Static (from build)
392
- # TODO: Change this line to libwasmvm_muslc.x86_64.a when upgrading to builders 0018+
393
- cp ./internal/api/libwasmvm_muslc.a artifacts/libwasmvm_muslc.x86_64.a
394
- cp ./internal/api/libwasmvm_muslc.aarch64.a artifacts/libwasmvm_muslc.aarch64.a
392
+ cp ./internal/api/libwasmvm_muslc.x86_64.a artifacts/
393
+ cp ./internal/api/libwasmvm_muslc.aarch64.a artifacts/
395
394
cp ./internal/api/libwasmvmstatic_darwin.a artifacts/
396
395
397
396
# Shared (from git)
Original file line number Diff line number Diff line change 1
1
.PHONY : all build build-rust build-go test
2
2
3
3
# Builds the Rust library libwasmvm
4
- BUILDERS_PREFIX := cosmwasm/go-ext-builder:0017
4
+ BUILDERS_PREFIX := cosmwasm/go-ext-builder:0018
5
5
# Contains a full Go dev environment including CGO support in order to run Go tests on the built shared library
6
6
# This image is currently not published.
7
7
ALPINE_TESTER := cosmwasm/alpine-tester:local
@@ -77,8 +77,7 @@ release-build-alpine:
77
77
rm -rf libwasmvm/target/x86_64-unknown-linux-musl/release
78
78
# build the muslc *.a file
79
79
docker run --rm -u $(USER_ID ) :$(USER_GROUP ) -v $(shell pwd) /libwasmvm:/code $(BUILDERS_PREFIX ) -alpine
80
- # TODO: Change this line to libwasmvm_muslc.x86_64.a when upgrading to builders 0018+
81
- cp libwasmvm/artifacts/libwasmvm_muslc.a internal/api
80
+ cp libwasmvm/artifacts/libwasmvm_muslc.x86_64.a internal/api
82
81
cp libwasmvm/artifacts/libwasmvm_muslc.aarch64.a internal/api
83
82
make update-bindings
84
83
Original file line number Diff line number Diff line change 1
1
# Versioned by a simple counter that is not bound to a specific CosmWasm version
2
2
# See builders/README.md
3
- BUILDERS_PREFIX := cosmwasm/go-ext-builder:0017
3
+ BUILDERS_PREFIX := cosmwasm/go-ext-builder:0018
4
4
5
5
.PHONY : docker-image-centos7
6
6
docker-image-centos7 :
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ versions of the builder images.
21
21
22
22
** Unreleased**
23
23
24
+ ** Version 0018:**
25
+
24
26
- Remove Go dev environment from ` cosmwasm/go-ext-builder:XXXX-alpine `
25
27
- Write x86_64 muslc output in ` libwasmvm_muslc.x86_64.a ` instead of
26
28
` libwasmvm_muslc.a `
You can’t perform that action at this time.
0 commit comments