2019-09-03 23:18:02 +00:00
|
|
|
.PHONY: spectests emtests clean build install lint precommit docs
|
2018-10-23 21:54:07 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Generate files
|
|
|
|
generate-spectests:
|
2019-07-06 01:57:30 +00:00
|
|
|
WASMER_RUNTIME_GENERATE_SPECTESTS=1 cargo build -p wasmer-runtime-core --release
|
2018-10-23 21:54:07 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
generate-emtests:
|
2019-07-09 19:07:05 +00:00
|
|
|
WASM_EMSCRIPTEN_GENERATE_EMTESTS=1 cargo build -p wasmer-emscripten-tests --release
|
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-08-06 00:58:51 +00:00
|
|
|
cargo test --manifest-path lib/spectests/Cargo.toml --release --features singlepass -- --nocapture
|
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-08-29 18:14:57 +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-07-06 01:57:30 +00:00
|
|
|
cargo test -p wasmer-singlepass-backend --release
|
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-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-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# All tests
|
2019-07-06 02:55:03 +00:00
|
|
|
capi:
|
|
|
|
cargo build --release
|
|
|
|
cargo build -p wasmer-runtime-c-api --release
|
2019-09-01 16:42:07 +00:00
|
|
|
|
|
|
|
test-capi: capi
|
2019-07-06 02:55:03 +00:00
|
|
|
cargo test -p wasmer-runtime-c-api --release
|
|
|
|
|
2019-09-01 16:42:07 +00:00
|
|
|
test-rest:
|
2019-08-29 18:14:57 +00:00
|
|
|
cargo test --release --all --exclude wasmer-runtime-c-api --exclude wasmer-emscripten --exclude wasmer-spectests --exclude wasmer-wasi --exclude wasmer-middleware-common --exclude wasmer-middleware-common-tests --exclude wasmer-singlepass-backend --exclude wasmer-clif-backend --exclude wasmer-llvm-backend --exclude wasmer-wasi-tests --exclude wasmer-emscripten-tests
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
circleci-clean:
|
|
|
|
@if [ ! -z "${CIRCLE_JOB}" ]; then rm -f /home/circleci/project/target/debug/deps/libcranelift_wasm* && rm -f /Users/distiller/project/target/debug/deps/libcranelift_wasm*; fi;
|
|
|
|
|
|
|
|
test: spectests emtests middleware wasitests circleci-clean test-rest
|
|
|
|
|
|
|
|
|
|
|
|
# Integration tests
|
2019-08-01 04:11:29 +00:00
|
|
|
integration-tests: release-clif
|
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
|
|
|
|
|
|
|
|
|
|
|
|
# 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-07-10 00:57:31 +00:00
|
|
|
cargo build --release --features 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:
|
|
|
|
cargo bench --all --no-run --no-default-features --features "backend-singlepass"
|
|
|
|
check-bench-clif:
|
|
|
|
cargo bench --all --no-run --no-default-features --features "backend-cranelift"
|
|
|
|
check-bench-llvm:
|
|
|
|
cargo bench --all --no-run --no-default-features --features "backend-llvm"
|
|
|
|
|
|
|
|
check-bench: check-bench-singlepass check-bench-llvm
|
|
|
|
|
|
|
|
check: check-bench
|
|
|
|
cargo check --release --features backend-singlepass,backend-llvm,loader-kernel,debug
|
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:
|
2019-07-13 04:02:57 +00:00
|
|
|
cargo build --release --features backend-singlepass,backend-llvm,loader-kernel
|
2019-07-06 01:36:34 +00:00
|
|
|
|
|
|
|
# Only one backend (cranelift)
|
2019-08-01 04:11:29 +00:00
|
|
|
release-clif:
|
2018-11-13 18:28:50 +00:00
|
|
|
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
|
|
|
|
# brew install mingw-w64
|
2019-07-08 18:30:04 +00:00
|
|
|
cargo build --release
|
|
|
|
|
|
|
|
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-07-10 00:57:31 +00:00
|
|
|
cargo build --release --features backend-llvm
|
2019-07-08 18:30:04 +00:00
|
|
|
|
2019-07-30 06:59:21 +00:00
|
|
|
bench-singlepass:
|
|
|
|
cargo bench --all --no-default-features --features "backend-singlepass"
|
|
|
|
bench-clif:
|
2019-08-07 23:47:25 +00:00
|
|
|
cargo bench --all --no-default-features --features "backend-cranelift"
|
2019-07-30 06:59:21 +00:00
|
|
|
bench-llvm:
|
|
|
|
cargo bench --all --no-default-features --features "backend-llvm"
|
2018-11-13 18:28:50 +00:00
|
|
|
|
2019-07-06 01:36:34 +00:00
|
|
|
# Build utils
|
|
|
|
build-install:
|
|
|
|
mkdir -p ./install/bin
|
|
|
|
cp ./wapm-cli/target/release/wapm ./install/bin/
|
|
|
|
cp ./target/release/wasmer ./install/bin/
|
|
|
|
tar -C ./install -zcvf wasmer.tar.gz bin/wapm bin/wasmer
|
2018-11-26 19:47:33 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
docs:
|
|
|
|
cargo doc --features=backend-singlepass,backend-llvm,wasi,managed
|