wasmer/Makefile

30 lines
754 B
Makefile
Raw Normal View History

2018-10-23 21:54:07 +00:00
.PHONY: spectests clean build install
# This will re-generate the Rust test files based on spectests/*.wast
spectests:
WASM_GENERATE_SPECTESTS=1 cargo build
# clean:
2018-11-13 18:28:50 +00:00
# rm -rf artifacts
2018-10-23 21:54:07 +00:00
build:
cargo build
install:
cargo install --path .
test:
2018-11-06 11:20:08 +00:00
cargo test -- --test-threads=1
2018-11-13 18:28:50 +00:00
release:
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
# brew install mingw-w64
cargo build --release
# mkdir -p artifacts
# BINARY_NAME := $(./binary-name.sh)
# cp ./target/release/wasmer ./artifacts/$(./binary-name.sh)
# cp ./target/release/wasmer ./artifacts/${BINARY_NAME}
publish-release:
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./artifacts/