Skip to content

Commit f1bfcdd

Browse files
committed
Set version cosmwasm/go-ext-builder:0018
1 parent 7070407 commit f1bfcdd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.circleci/config.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,8 @@ jobs:
389389
mkdir artifacts
390390
391391
# 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/
395394
cp ./internal/api/libwasmvmstatic_darwin.a artifacts/
396395
397396
# Shared (from git)

Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: all build build-rust build-go test
22

33
# Builds the Rust library libwasmvm
4-
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0017
4+
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0018
55
# Contains a full Go dev environment including CGO support in order to run Go tests on the built shared library
66
# This image is currently not published.
77
ALPINE_TESTER := cosmwasm/alpine-tester:local
@@ -77,8 +77,7 @@ release-build-alpine:
7777
rm -rf libwasmvm/target/x86_64-unknown-linux-musl/release
7878
# build the muslc *.a file
7979
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
8281
cp libwasmvm/artifacts/libwasmvm_muslc.aarch64.a internal/api
8382
make update-bindings
8483

builders/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Versioned by a simple counter that is not bound to a specific CosmWasm version
22
# See builders/README.md
3-
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0017
3+
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0018
44

55
.PHONY: docker-image-centos7
66
docker-image-centos7:

builders/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ versions of the builder images.
2121

2222
**Unreleased**
2323

24+
**Version 0018:**
25+
2426
- Remove Go dev environment from `cosmwasm/go-ext-builder:XXXX-alpine`
2527
- Write x86_64 muslc output in `libwasmvm_muslc.x86_64.a` instead of
2628
`libwasmvm_muslc.a`

0 commit comments

Comments
 (0)