Skip to content

Commit

Permalink
Fix #2!
Browse files Browse the repository at this point in the history
  • Loading branch information
daboross committed Apr 9, 2018
1 parent f673b7c commit 571e063
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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)
12 changes: 3 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 571e063

Please sign in to comment.