2018-11-05 17:03:09 +00:00
|
|
|
version: 2
|
|
|
|
jobs:
|
2018-11-17 18:43:05 +00:00
|
|
|
# Job used for testing
|
|
|
|
test:
|
|
|
|
docker:
|
|
|
|
- image: circleci/rust:latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-11-21 00:02:33 +00:00
|
|
|
- run:
|
|
|
|
name: Pull submodules
|
|
|
|
command: |
|
|
|
|
# git pull --recurse-submodules
|
|
|
|
git submodule sync --recursive
|
|
|
|
git submodule update --recursive --init
|
2018-11-17 18:43:05 +00:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
|
|
|
- v4-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
- run: sudo apt-get install -y cmake
|
|
|
|
- run: make test
|
|
|
|
- save_cache:
|
|
|
|
paths:
|
|
|
|
- /usr/local/cargo/registry
|
|
|
|
- target/debug/.fingerprint
|
|
|
|
- target/debug/build
|
|
|
|
- target/debug/deps
|
|
|
|
key: v4-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
|
|
|
|
test-and-build:
|
2018-11-05 17:03:09 +00:00
|
|
|
docker:
|
2018-11-05 17:10:34 +00:00
|
|
|
- image: circleci/rust:latest
|
2018-11-05 17:03:09 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-11-21 00:33:47 +00:00
|
|
|
- run:
|
|
|
|
name: Pull submodules
|
|
|
|
command: |
|
|
|
|
# git pull --recurse-submodules
|
|
|
|
git submodule sync --recursive
|
|
|
|
git submodule update --recursive --init
|
2018-11-05 17:03:09 +00:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
2018-11-13 19:36:04 +00:00
|
|
|
- v4-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
2018-11-05 17:12:59 +00:00
|
|
|
- run: sudo apt-get install -y cmake
|
2018-11-13 18:28:50 +00:00
|
|
|
- run:
|
2018-11-23 18:35:41 +00:00
|
|
|
name: Execute tests
|
|
|
|
command: make test
|
|
|
|
- run:
|
|
|
|
name: Make release build
|
2018-11-13 18:28:50 +00:00
|
|
|
command: |
|
|
|
|
make release
|
|
|
|
mkdir -p artifacts
|
2018-11-13 18:51:04 +00:00
|
|
|
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
|
2018-12-04 02:57:26 +00:00
|
|
|
# GIT_VERSION=$(git describe --exact-match --tags)
|
2018-11-13 18:51:04 +00:00
|
|
|
echo "${VERSION}" >> artifacts/version
|
2018-12-04 02:57:26 +00:00
|
|
|
echo "${CIRCLE_TAG}" >> artifacts/git_version
|
2018-11-13 18:28:50 +00:00
|
|
|
cp ./target/release/wasmer ./artifacts/$(./binary-name.sh)
|
|
|
|
- persist_to_workspace:
|
|
|
|
root: .
|
|
|
|
paths:
|
|
|
|
- artifacts
|
2018-11-05 17:03:09 +00:00
|
|
|
- save_cache:
|
|
|
|
paths:
|
|
|
|
- /usr/local/cargo/registry
|
|
|
|
- target/debug/.fingerprint
|
|
|
|
- target/debug/build
|
|
|
|
- target/debug/deps
|
2018-11-13 19:36:04 +00:00
|
|
|
- target/release/.fingerprint
|
2018-11-13 18:28:50 +00:00
|
|
|
- target/release/build
|
|
|
|
- target/release/deps
|
2018-11-13 19:36:04 +00:00
|
|
|
key: v4-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
2018-11-13 18:28:50 +00:00
|
|
|
|
2018-11-17 18:43:05 +00:00
|
|
|
test-and-build-macos:
|
2018-11-13 19:36:04 +00:00
|
|
|
macos:
|
|
|
|
xcode: "9.0"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-11-21 00:33:47 +00:00
|
|
|
- run:
|
|
|
|
name: Pull submodules
|
|
|
|
command: |
|
|
|
|
# git pull --recurse-submodules
|
|
|
|
git submodule sync --recursive
|
|
|
|
git submodule update --recursive --init
|
2018-11-13 19:36:04 +00:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
|
|
|
- v4-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
- run:
|
|
|
|
name: Install CMAKE
|
|
|
|
command: |
|
2018-11-13 19:48:34 +00:00
|
|
|
curl -O https://cmake.org/files/v3.4/cmake-3.4.1-Darwin-x86_64.tar.gz
|
2018-11-13 19:36:04 +00:00
|
|
|
tar xf cmake-3.4.1-Darwin-x86_64.tar.gz
|
|
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
|
|
- run:
|
2018-11-15 21:30:00 +00:00
|
|
|
name: Install Rust
|
2018-11-13 19:53:27 +00:00
|
|
|
command: |
|
2018-11-15 21:30:00 +00:00
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
2018-11-13 19:53:27 +00:00
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
cargo --version
|
2018-11-13 19:36:04 +00:00
|
|
|
- run:
|
2018-11-13 19:53:27 +00:00
|
|
|
name: Execute tests
|
2018-11-13 20:12:02 +00:00
|
|
|
command: |
|
2018-11-13 19:53:27 +00:00
|
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
|
|
make test
|
|
|
|
- run:
|
2018-11-23 18:35:41 +00:00
|
|
|
name: Make release build
|
2018-11-13 19:36:04 +00:00
|
|
|
command: |
|
2018-11-13 19:53:27 +00:00
|
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
2018-11-13 19:36:04 +00:00
|
|
|
make release
|
|
|
|
mkdir -p artifacts
|
2018-11-13 20:12:02 +00:00
|
|
|
# VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
|
|
|
|
# echo "${VERSION}" >> artifacts/version
|
2018-11-13 19:36:04 +00:00
|
|
|
cp ./target/release/wasmer ./artifacts/$(./binary-name.sh)
|
|
|
|
- persist_to_workspace:
|
|
|
|
root: .
|
|
|
|
paths:
|
|
|
|
- artifacts
|
|
|
|
- save_cache:
|
|
|
|
paths:
|
|
|
|
- /usr/local/cargo/registry
|
|
|
|
- target/debug/.fingerprint
|
|
|
|
- target/debug/build
|
|
|
|
- target/debug/deps
|
|
|
|
- target/release/.fingerprint
|
|
|
|
- target/release/build
|
|
|
|
- target/release/deps
|
|
|
|
key: v4-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
2018-11-13 18:28:50 +00:00
|
|
|
|
|
|
|
publish-github-release:
|
|
|
|
docker:
|
|
|
|
- image: cibuilds/github
|
|
|
|
steps:
|
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
|
|
|
- run:
|
|
|
|
name: "Publish Release on GitHub"
|
|
|
|
command: |
|
|
|
|
# go get github.com/tcnksm/ghr
|
|
|
|
# VERSION=$(git log -1 --pretty=%B)
|
2018-11-23 18:35:41 +00:00
|
|
|
# VERSION=$(./artifacts/ --version)
|
2018-11-13 18:51:04 +00:00
|
|
|
VERSION=$(cat ./artifacts/version)
|
|
|
|
rm ./artifacts/version
|
2018-12-04 02:19:03 +00:00
|
|
|
# VERSION_TAG=${CIRCLE_TAG}
|
2018-12-04 02:53:48 +00:00
|
|
|
VERSION_TAG=$(cat ./artifacts/git_version)
|
|
|
|
# VERSION_TAG=$(git describe --exact-match --tags)
|
2018-11-23 18:35:41 +00:00
|
|
|
if [ "$VERSION" == "$VERSION_TAG" ]; then
|
|
|
|
echo "Versions match, publishing to Github"
|
|
|
|
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./artifacts/
|
|
|
|
else
|
|
|
|
echo "Versions don't match. Wasmer output version (wasmer --version) is ${VERSION} while Git tag is ${VERSION_TAG}"
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-11-13 18:28:50 +00:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
main:
|
|
|
|
jobs:
|
2018-11-17 18:43:05 +00:00
|
|
|
- test:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
ignore: master
|
|
|
|
- test-and-build:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|
|
|
|
- test-and-build-macos:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|
2018-11-13 18:28:50 +00:00
|
|
|
# :
|
|
|
|
# filters:
|
|
|
|
# tags:
|
|
|
|
# only: /^\d+\.\d+\.\d+$/
|
|
|
|
|
|
|
|
- publish-github-release:
|
|
|
|
requires:
|
2018-11-17 18:43:05 +00:00
|
|
|
- test-and-build
|
|
|
|
- test-and-build-macos
|
2018-11-23 18:35:41 +00:00
|
|
|
filters:
|
|
|
|
tags:
|
|
|
|
only: /^\d+\.\d+\.\d+$/
|