Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
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
26 changes: 18 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
# Request an environment that provides sudo (that goes with larger containers)
# and a minimal language environment.
sudo: true
language: minimal
language: rust
matrix:
fast_finish: true

include:
- name: "Webassembly on nightly"
rust: nightly
env: TARGET=wasm
- name: "Latest stable native"
rust: stable
env: TARGET=native

cache: cargo

env:
- RUST_BACKTRACE=1

branches:
only:
- master

env:
global:
- RUST_BACKTRACE=1
matrix:
- RUST_TOOLCHAIN=nightly TARGET=wasm
- RUST_TOOLCHAIN=stable TARGET=native

before_install:
# Check how much space we've got on this machine.
- df -h

install:
# pull dependencies
- travis_wait 30 cargo update

script:
- ./ci/script.sh

Expand Down
Loading