2019-09-19 00:12:48 +00:00
|
|
|
.PHONY: spectests emtests clean build install lint precommit docs examples
|
2018-10-23 21:54:07 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Generate files
|
|
|
|
generate-spectests:
|
2019-09-23 00:46:16 +00:00
|
|
|
WASMER_RUNTIME_GENERATE_SPECTESTS=1 cargo build -p wasmer-runtime-core --release \
|
|
|
|
&& echo "formatting" \
|
|
|
|
&& cargo fmt
|
2018-10-23 21:54:07 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
generate-emtests:
|
2019-09-23 00:46:16 +00:00
|
|
|
WASM_EMSCRIPTEN_GENERATE_EMTESTS=1 cargo build -p wasmer-emscripten-tests --release \
|
|
|
|
&& echo "formatting" \
|
|
|
|
&& cargo fmt
|
2018-12-10 03:21:28 +00:00
|
|
|
|
2019-08-09 06:40:04 +00:00
|
|
|
generate-wasitests: wasitests-setup
|
2019-07-19 00:14:01 +00:00
|
|
|
WASM_WASI_GENERATE_WASITESTS=1 cargo build -p wasmer-wasi-tests --release -vv \
|
|
|
|
&& echo "formatting" \
|
|
|
|
&& cargo fmt
|
2019-05-17 19:09:31 +00:00
|
|
|
|
2019-07-17 21:00:51 +00:00
|
|
|
spectests-generate: generate-spectests
|
|
|
|
emtests-generate: generate-emtests
|
|
|
|
wasitests-generate: generate-wasitests
|
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
generate: generate-spectests generate-emtests generate-wasitests
|
2018-10-23 21:54:07 +00:00
|
|
|
|
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Spectests
|
|
|
|
spectests-singlepass:
|
2019-11-13 07:06:42 +00:00
|
|
|
cargo test --manifest-path lib/spectests/Cargo.toml --release --features singlepass -- --nocapture --test-threads 1
|
2018-10-23 21:54:07 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
spectests-cranelift:
|
2019-08-06 00:58:51 +00:00
|
|
|
cargo test --manifest-path lib/spectests/Cargo.toml --release --features clif -- --nocapture
|
2019-01-18 20:20:13 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
spectests-llvm:
|
2019-08-06 00:58:51 +00:00
|
|
|
cargo test --manifest-path lib/spectests/Cargo.toml --release --features llvm -- --nocapture
|
2018-12-15 06:45:03 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
spectests: spectests-singlepass spectests-cranelift spectests-llvm
|
2018-12-15 06:45:03 +00:00
|
|
|
|
2019-04-11 22:00:02 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Emscripten tests
|
|
|
|
emtests-singlepass:
|
2019-07-09 19:07:05 +00:00
|
|
|
cargo test --manifest-path lib/emscripten-tests/Cargo.toml --release --features singlepass -- --test-threads=1
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
emtests-cranelift:
|
2019-07-09 19:07:05 +00:00
|
|
|
cargo test --manifest-path lib/emscripten-tests/Cargo.toml --release --features clif -- --test-threads=1
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
emtests-llvm:
|
2019-07-09 19:07:05 +00:00
|
|
|
cargo test --manifest-path lib/emscripten-tests/Cargo.toml --release --features llvm -- --test-threads=1
|
2019-07-06 01:36:34 +00:00
|
|
|
|
2019-07-09 20:21:34 +00:00
|
|
|
emtests-unit:
|
|
|
|
cargo test --manifest-path lib/emscripten/Cargo.toml --release
|
|
|
|
|
|
|
|
emtests: emtests-unit emtests-singlepass emtests-cranelift emtests-llvm
|
2019-04-11 22:00:02 +00:00
|
|
|
|
2018-11-13 18:28:50 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Middleware tests
|
|
|
|
middleware-singlepass:
|
2019-08-29 18:14:57 +00:00
|
|
|
cargo test --manifest-path lib/middleware-common-tests/Cargo.toml --release --features singlepass
|
2019-03-17 17:13:04 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
middleware-cranelift:
|
2019-08-29 18:14:57 +00:00
|
|
|
cargo test --manifest-path lib/middleware-common-tests/Cargo.toml --release --features clif
|
2019-03-06 20:44:19 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
middleware-llvm:
|
2019-11-04 23:27:38 +00:00
|
|
|
cargo test --manifest-path lib/middleware-common-tests/Cargo.toml --release --features llvm
|
2019-04-11 00:15:47 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
middleware: middleware-singlepass middleware-cranelift middleware-llvm
|
2019-03-17 17:13:04 +00:00
|
|
|
|
2019-05-17 19:09:31 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Wasitests
|
2019-08-05 05:01:04 +00:00
|
|
|
wasitests-setup:
|
|
|
|
rm -rf lib/wasi-tests/wasitests/test_fs/temp
|
|
|
|
mkdir -p lib/wasi-tests/wasitests/test_fs/temp
|
|
|
|
|
|
|
|
wasitests-singlepass: wasitests-setup
|
2019-07-09 18:58:03 +00:00
|
|
|
cargo test --manifest-path lib/wasi-tests/Cargo.toml --release --features singlepass -- --test-threads=1
|
2019-05-17 20:42:21 +00:00
|
|
|
|
2019-08-05 05:01:04 +00:00
|
|
|
wasitests-cranelift: wasitests-setup
|
2019-08-28 18:19:59 +00:00
|
|
|
cargo test --manifest-path lib/wasi-tests/Cargo.toml --release --features clif -- --test-threads=1 --nocapture
|
2019-04-06 17:29:15 +00:00
|
|
|
|
2019-08-05 05:01:04 +00:00
|
|
|
wasitests-llvm: wasitests-setup
|
2019-07-09 18:58:03 +00:00
|
|
|
cargo test --manifest-path lib/wasi-tests/Cargo.toml --release --features llvm -- --test-threads=1
|
2019-04-06 17:29:15 +00:00
|
|
|
|
2019-08-28 20:36:30 +00:00
|
|
|
wasitests-unit: wasitests-setup
|
2019-08-28 18:19:59 +00:00
|
|
|
cargo test --manifest-path lib/wasi-tests/Cargo.toml --release --features clif -- --test-threads=1 --nocapture
|
2019-07-09 20:21:34 +00:00
|
|
|
cargo test --manifest-path lib/wasi/Cargo.toml --release
|
|
|
|
|
|
|
|
wasitests: wasitests-unit wasitests-singlepass wasitests-cranelift wasitests-llvm
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Backends
|
|
|
|
singlepass: spectests-singlepass emtests-singlepass middleware-singlepass wasitests-singlepass
|
2019-10-30 14:00:31 +00:00
|
|
|
cargo test -p wasmer-singlepass-backend --release
|
2019-12-06 21:04:32 +00:00
|
|
|
cargo test --manifest-path lib/runtime-core-tests/Cargo.toml --release --no-default-features --features backend-singlepass
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
cranelift: spectests-cranelift emtests-cranelift middleware-cranelift wasitests-cranelift
|
2019-07-06 01:57:30 +00:00
|
|
|
cargo test -p wasmer-clif-backend --release
|
2019-10-30 12:28:01 +00:00
|
|
|
cargo test -p wasmer-runtime-core-tests --release
|
2019-07-06 01:36:34 +00:00
|
|
|
|
2019-08-03 01:45:21 +00:00
|
|
|
llvm: spectests-llvm emtests-llvm wasitests-llvm
|
2019-07-06 01:57:30 +00:00
|
|
|
cargo test -p wasmer-llvm-backend --release
|
2019-11-23 00:33:16 +00:00
|
|
|
cargo test -p wasmer-llvm-backend-tests --release
|
2019-12-06 21:04:32 +00:00
|
|
|
cargo test --manifest-path lib/runtime-core-tests/Cargo.toml --release --no-default-features --features backend-llvm
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# All tests
|
2019-12-13 00:38:58 +00:00
|
|
|
capi-singlepass:
|
|
|
|
cargo build --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features singlepass-backend,wasi
|
2019-09-01 16:42:07 +00:00
|
|
|
|
2019-12-13 00:38:58 +00:00
|
|
|
capi-cranelift:
|
|
|
|
cargo build --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features cranelift-backend,wasi
|
|
|
|
|
|
|
|
capi-llvm:
|
|
|
|
cargo build --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features llvm-backend,wasi
|
|
|
|
|
2019-12-16 23:06:37 +00:00
|
|
|
capi-emscripten:
|
|
|
|
cargo build --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features singlepass-backend,emscripten
|
|
|
|
|
2019-12-13 00:38:58 +00:00
|
|
|
# We use cranelift as the default backend for the capi for now
|
|
|
|
capi: capi-cranelift
|
|
|
|
|
|
|
|
test-capi-singlepass: capi-singlepass
|
|
|
|
cargo test --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features singlepass-backend,wasi
|
|
|
|
|
|
|
|
test-capi-cranelift: capi-cranelift
|
|
|
|
cargo test --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features cranelift-backend,wasi
|
|
|
|
|
|
|
|
test-capi-llvm: capi-llvm
|
|
|
|
cargo test --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features llvm-backend,wasi
|
|
|
|
|
2019-12-16 23:06:37 +00:00
|
|
|
test-capi-emscripten: capi-emscripten
|
|
|
|
cargo test --manifest-path lib/runtime-c-api/Cargo.toml --release \
|
|
|
|
--no-default-features --features singlepass-backend,emscripten
|
|
|
|
|
2019-12-16 23:07:07 +00:00
|
|
|
test-capi: test-capi-singlepass test-capi-cranelift test-capi-llvm test-capi-emscripten
|
2019-07-06 02:55:03 +00:00
|
|
|
|
2019-10-25 21:24:22 +00:00
|
|
|
capi-test: test-capi
|
|
|
|
|
2019-09-01 16:42:07 +00:00
|
|
|
test-rest:
|
2020-02-27 22:22:26 +00:00
|
|
|
cargo test --release -p wasmer-dev-utils
|
|
|
|
cargo test --release -p wasmer-interface-types
|
|
|
|
cargo test --release -p wasmer-kernel-loader
|
|
|
|
cargo test --release -p kernel-net
|
|
|
|
cargo test --release -p wasmer-llvm-backend-tests
|
|
|
|
cargo test --release -p wasmer-runtime
|
|
|
|
cargo test --release -p wasmer-runtime-core
|
|
|
|
cargo test --release -p wasmer-wasi-experimental-io-devices
|
|
|
|
cargo test --release -p wasmer-win-exception-handler
|
2019-07-06 01:36:34 +00:00
|
|
|
|
2020-01-15 12:57:08 +00:00
|
|
|
test: spectests emtests middleware wasitests test-rest examples
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Integration tests
|
2019-09-19 00:12:48 +00:00
|
|
|
integration-tests: release-clif examples
|
2019-07-06 01:36:34 +00:00
|
|
|
echo "Running Integration Tests"
|
|
|
|
./integration_tests/lua/test.sh
|
|
|
|
./integration_tests/nginx/test.sh
|
|
|
|
./integration_tests/cowsay/test.sh
|
|
|
|
|
2019-09-19 00:12:48 +00:00
|
|
|
examples:
|
|
|
|
cargo run --example plugin
|
|
|
|
cargo run --example callback
|
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
# Utils
|
|
|
|
lint:
|
2019-07-06 01:57:30 +00:00
|
|
|
cargo fmt --all -- --check
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
precommit: lint test
|
|
|
|
|
2019-07-07 05:05:45 +00:00
|
|
|
debug:
|
2019-11-21 15:31:10 +00:00
|
|
|
cargo build --release --features backend-cranelift,backend-singlepass,debug,trace
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
install:
|
2019-07-06 02:55:03 +00:00
|
|
|
cargo install --path .
|
2019-04-06 17:29:15 +00:00
|
|
|
|
2019-08-10 18:11:54 +00:00
|
|
|
# Checks
|
|
|
|
check-bench-singlepass:
|
2019-10-21 22:15:11 +00:00
|
|
|
cargo check --benches --all --no-default-features --features "backend-singlepass" \
|
2019-09-23 23:33:29 +00:00
|
|
|
--exclude wasmer-clif-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader
|
2019-08-10 18:11:54 +00:00
|
|
|
check-bench-clif:
|
2019-10-21 22:15:11 +00:00
|
|
|
cargo check --benches --all --no-default-features --features "backend-cranelift" \
|
2019-09-23 23:33:29 +00:00
|
|
|
--exclude wasmer-singlepass-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader \
|
|
|
|
--exclude wasmer-middleware-common-tests
|
2019-08-10 18:11:54 +00:00
|
|
|
check-bench-llvm:
|
2019-10-21 22:15:11 +00:00
|
|
|
cargo check --benches --all --no-default-features --features "backend-llvm" \
|
2019-09-23 23:33:29 +00:00
|
|
|
--exclude wasmer-singlepass-backend --exclude wasmer-clif-backend --exclude wasmer-kernel-loader
|
2019-08-10 18:11:54 +00:00
|
|
|
|
|
|
|
check-bench: check-bench-singlepass check-bench-llvm
|
|
|
|
|
2019-10-21 22:15:11 +00:00
|
|
|
# TODO: We wanted `--workspace --exclude wasmer-runtime`, but can't due
|
|
|
|
# to https://github.com/rust-lang/cargo/issues/6745 .
|
2020-02-13 14:38:35 +00:00
|
|
|
NOT_RUNTIME_CRATES = -p wasmer-clif-backend -p wasmer-singlepass-backend -p wasmer-middleware-common -p wasmer-runtime-core -p wasmer-emscripten -p wasmer-llvm-backend -p wasmer-wasi -p wasmer-kernel-loader -p wasmer-dev-utils -p wasmer-wasi-tests -p wasmer-middleware-common-tests -p wasmer-emscripten-tests -p wasmer-interface-types
|
2019-10-21 22:15:11 +00:00
|
|
|
RUNTIME_CHECK = cargo check --manifest-path lib/runtime/Cargo.toml --no-default-features
|
2019-08-10 18:11:54 +00:00
|
|
|
check: check-bench
|
2019-10-21 22:15:11 +00:00
|
|
|
cargo check $(NOT_RUNTIME_CRATES)
|
|
|
|
cargo check --release $(NOT_RUNTIME_CRATES)
|
|
|
|
cargo check --all-features $(NOT_RUNTIME_CRATES)
|
|
|
|
cargo check --release --all-features $(NOT_RUNTIME_CRATES)
|
2019-10-17 22:37:35 +00:00
|
|
|
# wasmer-runtime doesn't work with all backends enabled at once.
|
|
|
|
#
|
|
|
|
# We test using manifest-path directly so as to disable the default.
|
|
|
|
# `--no-default-features` only disables the default features in the
|
|
|
|
# current package, not the package specified by `-p`. This is
|
|
|
|
# intentional.
|
|
|
|
#
|
|
|
|
# Test default features, test 'debug' feature only in non-release
|
|
|
|
# builds, test as many combined features as possible with each backend
|
|
|
|
# as default, and test a minimal set of features with only one backend
|
|
|
|
# at a time.
|
2020-02-19 00:51:02 +00:00
|
|
|
cargo check --manifest-path lib/runtime-core/Cargo.toml
|
2019-10-17 22:37:35 +00:00
|
|
|
cargo check --manifest-path lib/runtime/Cargo.toml
|
2020-01-07 15:10:36 +00:00
|
|
|
# Check some of the cases where deterministic execution could matter
|
|
|
|
cargo check --manifest-path lib/runtime/Cargo.toml --features "deterministic-execution"
|
|
|
|
cargo check --manifest-path lib/runtime/Cargo.toml --no-default-features \
|
|
|
|
--features=default-backend-singlepass,deterministic-execution
|
|
|
|
cargo check --manifest-path lib/runtime/Cargo.toml --no-default-features \
|
|
|
|
--features=default-backend-llvm,deterministic-execution
|
|
|
|
cargo check --release --manifest-path lib/runtime/Cargo.toml
|
2019-10-21 22:15:11 +00:00
|
|
|
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-singlepass
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-singlepass
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-cranelift
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-cranelift
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-llvm
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=cranelift,cache,llvm,singlepass,default-backend-llvm
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=singlepass,default-backend-singlepass
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=singlepass,default-backend-singlepass
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=cranelift,default-backend-cranelift
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=cranelift,default-backend-cranelift
|
|
|
|
$(RUNTIME_CHECK) \
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=llvm,default-backend-llvm
|
2020-01-07 15:10:36 +00:00
|
|
|
$(RUNTIME_CHECK) --release \
|
|
|
|
--features=llvm,default-backend-llvm
|
2020-01-14 21:50:48 +00:00
|
|
|
--features=default-backend-singlepass,singlepass,cranelift,llvm,cache,deterministic-execution
|
2019-07-13 03:18:09 +00:00
|
|
|
|
2019-08-10 18:11:54 +00:00
|
|
|
# Release
|
2018-11-13 18:28:50 +00:00
|
|
|
release:
|
2020-01-14 20:35:54 +00:00
|
|
|
cargo build --release --features backend-singlepass,backend-cranelift,backend-llvm,loader-kernel,experimental-io-devices,log/release_max_level_off
|
2019-07-06 01:36:34 +00:00
|
|
|
|
2020-01-28 17:07:55 +00:00
|
|
|
# Release with musl target
|
|
|
|
release-musl:
|
|
|
|
# backend-llvm is not included due to dependency on wabt.
|
|
|
|
# experimental-io-devices is not included due to missing x11-fb.
|
|
|
|
cargo build --release --target x86_64-unknown-linux-musl --features backend-singlepass,backend-cranelift,loader-kernel,log/release_max_level_off,wasi --no-default-features
|
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Only one backend (cranelift)
|
2019-08-01 04:11:29 +00:00
|
|
|
release-clif:
|
2019-10-01 05:50:04 +00:00
|
|
|
# If you are on macOS, you will need mingw-w64 for cross compiling to Windows
|
2018-11-13 18:28:50 +00:00
|
|
|
# brew install mingw-w64
|
2019-11-21 15:31:10 +00:00
|
|
|
cargo build --release --features backend-cranelift
|
2019-07-08 18:30:04 +00:00
|
|
|
|
|
|
|
release-singlepass:
|
2019-07-10 00:57:31 +00:00
|
|
|
cargo build --release --features backend-singlepass
|
2019-07-06 01:36:34 +00:00
|
|
|
|
2019-07-08 18:30:04 +00:00
|
|
|
release-llvm:
|
2019-12-18 21:31:40 +00:00
|
|
|
cargo build --release --features backend-llvm,experimental-io-devices
|
2019-07-08 18:30:04 +00:00
|
|
|
|
2019-07-30 06:59:21 +00:00
|
|
|
bench-singlepass:
|
2019-09-23 23:33:29 +00:00
|
|
|
cargo bench --all --no-default-features --features "backend-singlepass" \
|
|
|
|
--exclude wasmer-clif-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader
|
2019-07-30 06:59:21 +00:00
|
|
|
bench-clif:
|
2019-09-23 23:33:29 +00:00
|
|
|
cargo bench --all --no-default-features --features "backend-cranelift" \
|
|
|
|
--exclude wasmer-singlepass-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader \
|
|
|
|
--exclude wasmer-middleware-common-tests
|
2019-07-30 06:59:21 +00:00
|
|
|
bench-llvm:
|
2019-09-23 23:33:29 +00:00
|
|
|
cargo bench --all --no-default-features --features "backend-llvm" \
|
|
|
|
--exclude wasmer-singlepass-backend --exclude wasmer-clif-backend --exclude wasmer-kernel-loader
|
2018-11-13 18:28:50 +00:00
|
|
|
|
2020-02-20 19:59:44 +00:00
|
|
|
build-install-package:
|
|
|
|
# This command doesn't build the binary, just packages it
|
2019-07-06 01:36:34 +00:00
|
|
|
mkdir -p ./install/bin
|
|
|
|
cp ./wapm-cli/target/release/wapm ./install/bin/
|
|
|
|
cp ./target/release/wasmer ./install/bin/
|
2020-03-11 01:23:59 +00:00
|
|
|
# Create the wax binary as symlink to wapm
|
|
|
|
cd ./install/bin/ && ln -s wapm wax
|
2019-07-06 01:36:34 +00:00
|
|
|
tar -C ./install -zcvf wasmer.tar.gz bin/wapm bin/wasmer
|
2018-11-26 19:47:33 +00:00
|
|
|
|
2020-02-20 02:54:32 +00:00
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
|
2020-02-20 19:59:44 +00:00
|
|
|
build-capi-package:
|
|
|
|
# This command doesn't build the C-API, just packages it
|
2020-02-20 02:54:32 +00:00
|
|
|
mkdir -p ./capi/
|
|
|
|
mkdir -p ./capi/include
|
|
|
|
mkdir -p ./capi/lib
|
|
|
|
ifeq ($(OS), Windows_NT)
|
2020-02-20 05:39:10 +00:00
|
|
|
cp target/release/wasmer_runtime_c_api.dll ./capi/lib/wasmer.dll
|
|
|
|
cp target/release/wasmer_runtime_c_api.lib ./capi/lib/wasmer.lib
|
2020-02-20 02:54:32 +00:00
|
|
|
else
|
|
|
|
ifeq ($(UNAME_S), Darwin)
|
|
|
|
cp target/release/libwasmer_runtime_c_api.dylib ./capi/lib/libwasmer.dylib
|
|
|
|
cp target/release/libwasmer_runtime_c_api.dylib ./capi/lib/libwasmer.a
|
|
|
|
# Fix the rpath for the dylib
|
|
|
|
install_name_tool -id "@rpath/libwasmer.dylib" ./capi/lib/libwasmer.dylib
|
|
|
|
else
|
|
|
|
cp target/release/libwasmer_runtime_c_api.so ./capi/lib/libwasmer.so
|
|
|
|
cp target/release/libwasmer_runtime_c_api.a ./capi/lib/libwasmer.a
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
find target/release/build -name 'wasmer.h*' -exec cp {} ./capi/include ';'
|
|
|
|
cp LICENSE ./capi/LICENSE
|
2020-02-20 19:24:54 +00:00
|
|
|
cp lib/runtime-c-api/doc/index.md ./capi/README.md
|
2020-02-20 02:54:32 +00:00
|
|
|
tar -C ./capi -zcvf wasmer-c-api.tar.gz lib include README.md LICENSE
|
|
|
|
|
2020-03-11 04:38:17 +00:00
|
|
|
WAPM_VERSION = v0.5.0
|
2020-02-28 19:11:31 +00:00
|
|
|
build-wapm:
|
|
|
|
git clone --branch $(WAPM_VERSION) https://github.com/wasmerio/wapm-cli.git
|
|
|
|
cargo build --release --manifest-path wapm-cli/Cargo.toml --features "telemetry update-notifications"
|
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# For installing the contents locally
|
|
|
|
do-install:
|
|
|
|
tar -C ~/.wasmer -zxvf wasmer.tar.gz
|
2019-05-05 19:17:10 +00:00
|
|
|
|
2018-11-13 18:28:50 +00:00
|
|
|
publish-release:
|
|
|
|
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./artifacts/
|
2019-06-17 20:25:20 +00:00
|
|
|
|
|
|
|
# cargo install cargo-deps
|
|
|
|
# must install graphviz for `dot`
|
|
|
|
dep-graph:
|
2019-08-29 18:14:57 +00:00
|
|
|
cargo deps --optional-deps --filter wasmer-wasi wasmer-wasi-tests wasmer-kernel-loader wasmer-dev-utils wasmer-llvm-backend wasmer-emscripten wasmer-emscripten-tests wasmer-runtime-core wasmer-runtime wasmer-middleware-common wasmer-middleware-common-tests wasmer-singlepass-backend wasmer-clif-backend wasmer --manifest-path Cargo.toml | dot -Tpng > wasmer_depgraph.png
|
2019-09-03 23:12:30 +00:00
|
|
|
|
2020-02-20 19:24:54 +00:00
|
|
|
docs-capi:
|
2020-02-20 19:56:47 +00:00
|
|
|
cd lib/runtime-c-api/ && doxygen doxyfile
|
2020-02-20 19:24:54 +00:00
|
|
|
|
|
|
|
docs: docs-capi
|
2020-02-11 18:41:17 +00:00
|
|
|
cargo doc --features=backend-singlepass,backend-cranelift,backend-llvm,docs,wasi,managed --workspace --document-private-items --no-deps
|
2020-01-14 18:32:00 +00:00
|
|
|
mkdir -p api-docs
|
2020-01-15 10:04:00 +00:00
|
|
|
mkdir -p api-docs/c
|
2020-01-15 12:21:05 +00:00
|
|
|
cp -R target/doc api-docs/crates
|
2020-01-15 11:32:27 +00:00
|
|
|
cp -R lib/runtime-c-api/doc/html api-docs/c/runtime-c-api
|
|
|
|
echo '<!-- Build $(SOURCE_VERSION) --><meta http-equiv="refresh" content="0; url=rust/wasmer_runtime/index.html">' > api-docs/index.html
|
2020-01-15 12:21:05 +00:00
|
|
|
echo '<!-- Build $(SOURCE_VERSION) --><meta http-equiv="refresh" content="0; url=wasmer_runtime/index.html">' > api-docs/crates/index.html
|
2020-01-14 12:35:06 +00:00
|
|
|
|
|
|
|
docs-publish:
|
2020-01-15 10:01:22 +00:00
|
|
|
git clone -b "gh-pages" --depth=1 https://wasmerbot:$(GITHUB_DOCS_TOKEN)@github.com/wasmerio/wasmer.git api-docs-repo
|
2020-01-14 18:32:00 +00:00
|
|
|
cp -R api-docs/* api-docs-repo/
|
2020-01-15 12:21:05 +00:00
|
|
|
cd api-docs-repo && git add index.html crates/* c/*
|
2020-01-15 11:43:58 +00:00
|
|
|
cd api-docs-repo && (git diff-index --quiet HEAD || git commit -m "Publishing GitHub Pages")
|
2020-01-14 18:32:00 +00:00
|
|
|
cd api-docs-repo && git push origin gh-pages
|