mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
348 lines
12 KiB
YAML
348 lines
12 KiB
YAML
version: 2
|
|
jobs:
|
|
# Job used for testing
|
|
lint:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-lint-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get install -y cmake
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
- run:
|
|
name: Install lint deps
|
|
command: |
|
|
rustup component add rustfmt
|
|
rustup component add clippy
|
|
- run:
|
|
name: Execute lints
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make lint
|
|
- save_cache:
|
|
paths:
|
|
- /usr/local/cargo/registry
|
|
- target/debug/.fingerprint
|
|
- target/debug/build
|
|
- target/debug/deps
|
|
key: v6-lint-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
test:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get install -y cmake
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
- run:
|
|
name: Tests
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make test
|
|
- run:
|
|
name: Emscripten Tests
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make test-emscripten
|
|
- run:
|
|
name: Integration Tests
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make integration-tests
|
|
- save_cache:
|
|
paths:
|
|
- /usr/local/cargo/registry
|
|
- target/debug/.fingerprint
|
|
- target/debug/build
|
|
- target/debug/deps
|
|
key: v6-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
test-macos:
|
|
macos:
|
|
xcode: "9.0"
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
- run:
|
|
name: Install crate dependencies
|
|
command: |
|
|
# Installing cmake outside of brew to improve speed
|
|
curl -O https://cmake.org/files/v3.4/cmake-3.4.1-Darwin-x86_64.tar.gz
|
|
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"
|
|
# Installing LLVM outside of brew
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz
|
|
- run:
|
|
name: Install Rust
|
|
command: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
cargo --version
|
|
- run:
|
|
name: Tests
|
|
command: |
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
# We increase the ulimit for fixing cargo unclosed files in mac
|
|
ulimit -n 8000
|
|
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
|
|
make test
|
|
- run:
|
|
name: Emscripten Tests
|
|
command: |
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
# We increase the ulimit for fixing cargo unclosed files in mac
|
|
ulimit -n 8000
|
|
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
|
|
make test-emscripten
|
|
- run:
|
|
name: Integration Tests
|
|
command: |
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
make integration-tests
|
|
- save_cache:
|
|
paths:
|
|
- ~/.cargo/registry/
|
|
- target/debug/.fingerprint
|
|
- target/debug/build
|
|
- target/debug/deps
|
|
- target/release/.fingerprint
|
|
- target/release/build
|
|
- target/release/deps
|
|
key: v6-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
test-and-build:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get install -y cmake
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
- run:
|
|
name: Tests
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make test
|
|
- run:
|
|
name: Emscripten Tests
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make test-emscripten
|
|
- run:
|
|
name: Release Build
|
|
command: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make release
|
|
mkdir -p artifacts
|
|
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
|
|
# GIT_VERSION=$(git describe --exact-match --tags)
|
|
echo "${VERSION}" >> artifacts/version
|
|
echo "${CIRCLE_TAG}" >> artifacts/git_version
|
|
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: v6-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
test-and-build-macos:
|
|
macos:
|
|
xcode: "9.0"
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
- run:
|
|
name: Install crate dependencies
|
|
command: |
|
|
# Installing cmake outside of brew to improve speed
|
|
curl -O https://cmake.org/files/v3.4/cmake-3.4.1-Darwin-x86_64.tar.gz
|
|
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"
|
|
# Installing LLVM outside of brew
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz
|
|
- run:
|
|
name: Install Rust
|
|
command: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
cargo --version
|
|
- run:
|
|
name: Tests
|
|
command: |
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
# We increase the ulimit for fixing cargo unclosed files in mac
|
|
ulimit -n 8000
|
|
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
|
|
make test
|
|
- run:
|
|
name: Emscripten Tests
|
|
command: |
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
# We increase the ulimit for fixing cargo unclosed files in mac
|
|
ulimit -n 8000
|
|
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
|
|
make test-emscripten
|
|
- run:
|
|
name: Release Build
|
|
command: |
|
|
export PATH="`pwd`/cmake-3.4.1-Darwin-x86_64/CMake.app/Contents/bin:$PATH"
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/"
|
|
make release
|
|
mkdir -p artifacts
|
|
# VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
|
|
# echo "${VERSION}" >> artifacts/version
|
|
cp ./target/release/wasmer ./artifacts/$(./binary-name.sh)
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- artifacts
|
|
- save_cache:
|
|
paths:
|
|
- ~/.cargo/registry/
|
|
- target/debug/.fingerprint
|
|
- target/debug/build
|
|
- target/debug/deps
|
|
- target/release/.fingerprint
|
|
- target/release/build
|
|
- target/release/deps
|
|
key: v6-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
|
|
|
test-rust-nightly:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v6-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}-nightly
|
|
- run:
|
|
name: Install dependencies
|
|
command: |
|
|
sudo apt-get install -y cmake
|
|
curl -O https://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
tar xf clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
|
|
- run: rustup default nightly
|
|
- run: |
|
|
export LLVM_SYS_70_PREFIX="`pwd`/clang+llvm-7.0.0-x86_64-linux-gnu-ubuntu-16.04/"
|
|
make test
|
|
- save_cache:
|
|
paths:
|
|
- /usr/local/cargo/registry
|
|
- target/debug/.fingerprint
|
|
- target/debug/build
|
|
- target/debug/deps
|
|
key: v6-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}-nightly
|
|
|
|
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)
|
|
# VERSION=$(./artifacts/ --version)
|
|
VERSION=$(cat ./artifacts/version)
|
|
# VERSION_TAG=${CIRCLE_TAG}
|
|
VERSION_TAG=$(cat ./artifacts/git_version)
|
|
rm ./artifacts/version
|
|
rm ./artifacts/git_version
|
|
# VERSION_TAG=$(git describe --exact-match --tags)
|
|
#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} -soft ${VERSION} ./artifacts/
|
|
#else
|
|
# echo "Versions don't match. Wasmer output version (wasmer --version) is ${VERSION} while Git tag is ${VERSION_TAG}"
|
|
# exit 1
|
|
#fi
|
|
|
|
workflows:
|
|
version: 2
|
|
main:
|
|
jobs:
|
|
- lint
|
|
- test:
|
|
filters:
|
|
branches:
|
|
only:
|
|
- trying
|
|
- staging
|
|
- test-macos:
|
|
filters:
|
|
branches:
|
|
only:
|
|
- trying
|
|
- staging
|
|
- test-and-build:
|
|
filters:
|
|
branches:
|
|
only:
|
|
- master
|
|
- test-and-build-macos:
|
|
filters:
|
|
branches:
|
|
only:
|
|
- master
|
|
- test-rust-nightly:
|
|
filters:
|
|
branches:
|
|
only:
|
|
- trying
|
|
- staging
|
|
- publish-github-release:
|
|
requires:
|
|
- lint
|
|
- test-and-build
|
|
- test-and-build-macos
|
|
filters:
|
|
branches:
|
|
only: master
|