wasmer/Makefile

182 lines
6.0 KiB
Makefile
Raw Normal View History

.PHONY: spectests emtests clean build install lint precommit
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:
WASM_EMSCRIPTEN_GENERATE_EMTESTS=1 cargo build -p wasmer-emscripten-tests --release
2018-12-10 03:21:28 +00:00
2019-07-06 01:36:34 +00:00
generate-wasitests:
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
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:
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:
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:
cargo test --manifest-path lib/spectests/Cargo.toml --release --features llvm -- --nocapture
2019-07-06 01:36:34 +00:00
spectests: spectests-singlepass spectests-cranelift spectests-llvm
2019-04-11 22:00:02 +00:00
2019-07-06 01:36:34 +00:00
# Emscripten tests
emtests-singlepass:
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:
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:
cargo test --manifest-path lib/emscripten-tests/Cargo.toml --release --features llvm -- --test-threads=1
2019-07-06 01:36: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-07-06 01:57:30 +00:00
cargo test --manifest-path lib/middleware-common/Cargo.toml --release --features singlepass
2019-03-17 17:13:04 +00:00
2019-07-06 01:36:34 +00:00
middleware-cranelift:
2019-07-06 01:57:30 +00:00
cargo test --manifest-path lib/middleware-common/Cargo.toml --release --features clif
2019-07-06 01:36:34 +00:00
middleware-llvm:
2019-07-06 01:57:30 +00:00
cargo test --manifest-path lib/middleware-common/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-08-05 05:01:04 +00:00
wasitests-cranelift: wasitests-setup
2019-07-09 18:58:03 +00:00
cargo test --manifest-path lib/wasi-tests/Cargo.toml --release --features clif -- --test-threads=1
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
wasitests-unit:
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
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
cargo test -p wasmer-runtime-c-api --release
test-rest: capi
cargo test --release --all --exclude wasmer-runtime-c-api --exclude wasmer-emscripten --exclude wasmer-spectests --exclude wasmer-wasi --exclude wasmer-middleware-common --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
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
check:
cargo check --release --features backend-singlepass,backend-llvm,loader-kernel
2018-11-13 18:28:50 +00:00
release:
cargo build --release --features backend-singlepass,backend-llvm,loader-kernel
2019-07-06 01:36:34 +00:00
# Only one backend (cranelift)
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:
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
# compile but don't run the benchmarks
compile-bench-singlepass:
cargo bench --all --no-run --no-default-features --features "backend-singlepass"
compile-bench-clif:
cargo bench --all --no-run --no-default-features --features "backend-cranelift"
compile-bench-llvm:
cargo bench --all --no-run --no-default-features --features "backend-llvm"
2019-04-11 22:33:02 +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/
# cargo install cargo-deps
# must install graphviz for `dot`
dep-graph:
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-singlepass-backend wasmer-clif-backend wasmer --manifest-path Cargo.toml | dot -Tpng > wasmer_depgraph.png