mirror of
https://github.com/extism/extism.git
synced 2026-01-10 06:18:00 -05:00
I think this will fix the issue with CI hanging - this fixes the issue when building Elixir, which seems to be the same as the CI issue
8 lines
281 B
Bash
Executable File
8 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cargo build --release --target wasm32-unknown-unknown --package extism-runtime-kernel --bin extism-runtime
|
|
cp target/wasm32-unknown-unknown/release/extism-runtime.wasm .
|
|
wasm-strip extism-runtime.wasm
|
|
mv extism-runtime.wasm ../runtime/src/extism-runtime.wasm
|
|
|