Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add .so / .dylib file and modify Makefile #85

Merged
merged 2 commits into from
Jan 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/builds_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare docker image
run: cd builders && make docker-image-alpine
- name: Build static library and test
run: make test-alpine
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.PHONY: all build build-rust build-go test

# Builds the Rust library libwasmvm
BUILDERS_PREFIX := cosmwasm/go-ext-builder:0014
BUILDERS_PREFIX := line/wasmvm-builder
# Contains a full Go dev environment in order to run Go tests on the built library
ALPINE_TESTER := cosmwasm/go-ext-builder:0014-alpine
ALPINE_TESTER := line/wasmvm-builder-alpine

USER_ID := $(shell id -u)
USER_GROUP = $(shell id -g)
Expand Down
Binary file added internal/api/libwasmvm.aarch64.so
Binary file not shown.
Binary file added internal/api/libwasmvm.dylib
Binary file not shown.
Binary file added internal/api/libwasmvm.x86_64.so
Binary file not shown.