diff --git a/.travis.yml b/.travis.yml index ab98abf2..7178ab66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,13 @@ language: rust sudo: false cache: cargo -rust: -- stable -- beta -- nightly +rust: nightly os: - linux - osx install: - rustup target add wasm32-unknown-unknown script: -- (cd cargo-screeps; cargo build --verbose) -- (cd cargo-screeps; cargo test --verbose) -- (cd screeps-game-api; cargo build --target=wasm32-unknown-unknown --verbose) +- (cd cargo-screeps && cargo build --verbose) +- (cd cargo-screeps && cargo test --verbose) +- (cd screeps-game-api && cargo build --release --target=wasm32-unknown-unknown --verbose) diff --git a/appveyor.yml b/appveyor.yml index 602b8bcf..b9a64ba5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,12 +3,6 @@ environment: matrix: - # Stable - - TARGET: x86_64-pc-windows-msvc - RUST_VERSION: stable - # Beta - - TARGET: i686-pc-windows-msvc - RUST_VERSION: beta # Nightly - TARGET: i686-pc-windows-msvc RUST_VERSION: nightly @@ -27,9 +21,9 @@ install: - cargo -V test_script: -- (cd cargo-screeps; cargo build --verbose) -- (cd cargo-screeps; cargo test --verbose) -- (cd screeps-game-api; cargo build --target=wasm32-unknown-unknown --verbose) +- cd cargo-screeps && cargo build --verbose +- cd cargo-screeps && cargo test --verbose +- cd screeps-game-api && cargo build --release --target=wasm32-unknown-unknown --verbose cache: - target