Skip to content

Hardcode safe nightly build #334

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ target/
# MacOS folder metadata
.DS_Store

# Rust
Cargo.lock

# Text writing
*.scriv

Expand Down
26 changes: 14 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ matrix:

before_install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y
- ~/.cargo/bin/rustup toolchain install nightly
- ~/.cargo/bin/rustup toolchain install nightly-2019-01-08
- ~/.cargo/bin/rustup update
- ~/.cargo/bin/rustup target add wasm32-unknown-unknown --toolchain nightly
- ~/.cargo/bin/rustup target add wasm32-unknown-unknown --toolchain nightly-2019-01-08

script:
- PATH=$PATH:$HOME/.cargo/bin sbt -jvm-opts travis/jvmopts.compile compile
Expand Down Expand Up @@ -45,9 +45,9 @@ matrix:

before_install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y
- ~/.cargo/bin/rustup toolchain install nightly
- ~/.cargo/bin/rustup toolchain install nightly-2019-01-08
- ~/.cargo/bin/rustup update
- ~/.cargo/bin/rustup target add wasm32-unknown-unknown --toolchain nightly
- ~/.cargo/bin/rustup target add wasm32-unknown-unknown --toolchain nightly-2019-01-08

# LlamadbIntegrationTest requires 2 Gb RAM and should be run only in PR
script:
Expand Down Expand Up @@ -92,13 +92,13 @@ matrix:
- name: rust App SDK
language: rust
# todo enable 'stable' and 'beta' when `allocator_api` will become stable
rust: nightly
rust: nightly-2019-01-08
cache:
- cargo
- npm

before_install:
- rustup component add rustfmt --toolchain nightly
- rustup component add rustfmt --toolchain nightly-2019-01-08
- cd sdk/rust

script:
Expand All @@ -109,18 +109,20 @@ matrix:

- name: llamaDb VM App
language: rust
rust: nightly
rust: nightly-2019-01-08
cache: cargo
sudo: false
before_install:
- rustup component add rustfmt-preview --toolchain nightly
- rustup toolchain list
- rustup default nightly-2019-01-08
- rustup component add rustfmt
- cd vm/examples/llamadb

script:
- cargo fmt --all -- --check -v
- cargo build -v
- cargo doc -v
- cargo test -v
- cargo +nightly-2019-01-08 fmt --all -- --check -v
- cargo +nightly-2019-01-08 build -v
- cargo +nightly-2019-01-08 doc -v
- cargo +nightly-2019-01-08 test -v

- name: Fluence CLI
language: rust
Expand Down
Loading