update wasmer; mem.grow compile time limits checks #189
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: libvmexeccapi-build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build dynamic library for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
artifact_name: libvmexeccapi.so | |
make_target: capi-linux-amd64 | |
- os: macos-13 | |
artifact_name: libvmexeccapi.dylib | |
make_target: capi-osx-amd64 | |
- os: macos-13-xlarge | |
artifact_name: libvmexeccapi_arm | |
make_target: capi-osx-arm | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Make | |
run: make ${{ matrix.make_target }} | |
- name: Save artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libs | |
path: | | |
target/release/*.so | |
target/release/*.dylib | |
c-api/libvmexeccapi.h |