-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ventuzelo/fix-857-panic-loader-parameter
- Loading branch information
Showing
164 changed files
with
11,904 additions
and
4,024 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
** | ||
!lib/** | ||
!src/** | ||
!examples/** | ||
!Cargo.toml | ||
!Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
arch: | ||
- arm64 | ||
|
||
language: rust | ||
rust: | ||
- nightly-2019-08-15 | ||
|
||
cache: | ||
directories: | ||
- /home/travis/.sccache/ | ||
- /home/travis/.cargo/bin/ | ||
|
||
script: | ||
# Sccache | ||
# - curl -L https://github.com/mozilla/sccache/releases/download/0.2.10/sccache-0.2.10-x86_64-unknown-linux-musl.tar.gz | tar xzf - | ||
# - export RUSTC_WRAPPER=`pwd`/sccache-0.2.10-x86_64-unknown-linux-musl/sccache | ||
- test -f /home/travis/.cargo/bin/sccache || cargo install sccache | ||
- export RUSTC_WRAPPER=/home/travis/.cargo/bin/sccache | ||
- mkdir -p /home/travis/.sccache/ | ||
- export SCCACHE_DIR="/home/travis/.sccache/" | ||
- SCCACHE_ERROR_LOG=`pwd`/sccache.log RUST_LOG=debug $RUSTC_WRAPPER --start-server | ||
- $RUSTC_WRAPPER -s | ||
|
||
# Tests | ||
- make spectests-singlepass | ||
|
||
before_deploy: | ||
# Release | ||
- make release-singlepass | ||
- make wapm | ||
- make build-install | ||
- mkdir -p artifacts | ||
- cp ./wasmer.tar.gz ./artifacts/$(./scripts/binary-name.sh) | ||
|
||
# before_deploy: | ||
# # Set up git user name and tag this commit | ||
# - git config --local user.name "Syrus Akbary" | ||
# - git config --local user.email "[email protected]" | ||
# - export TRAVIS_TAG="0.10.2" | ||
# # - git tag $TRAVIS_TAG | ||
|
||
deploy: | ||
provider: releases | ||
file_glob: true | ||
file: artifacts/* | ||
api_key: $GITHUB_OAUTH_TOKEN | ||
# This is set to the previous artifacts are not deleted by travis | ||
skip_cleanup: true | ||
on: | ||
tags: true | ||
# branch: feature/singlepass-aarch64 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- cmake | ||
|
||
branches: | ||
only: | ||
- master | ||
- staging | ||
- trying | ||
# Making sure Travis runs on new Tags | ||
- /^\d+\.\d+(\.\d+)?(-\S*)?$/ | ||
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.