Skip to content

Commit

Permalink
Merge pull request #65 from sfleischman105/LazySmpRedo
Browse files Browse the repository at this point in the history
Lazy smp redo
  • Loading branch information
sfleischman105 committed Nov 28, 2017
2 parents 08a61af + a3e79a7 commit 6b5d7f4
Show file tree
Hide file tree
Showing 82 changed files with 9,016 additions and 4,288 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ target/
rusty_chess.iml
Pleco.iml
pleco.iml
pleco/Cargo.lock
pleco_engine/Cargo.lock
Cargo.lock
55 changes: 55 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
language: rust

rust:
- nightly


cache:
- cargo
- apt


sudo: required

env:
global:
- RUST_BACKTRACE=1

addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake


os:
- linux


script:
- cargo build --verbose
- cargo test --verbose
- |
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]
then
cargo bench
fi
- |
if [[ "$TRAVIS_RUST_VERSION" == stable ]]
then
cargo doc
fi
after_success:
- |
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]
then
cargo install cargo-travis || echo "cargo-travis has been already installed"
export PATH=$HOME/.cargo/bin:$PATH
cargo coveralls
fi
Loading

0 comments on commit 6b5d7f4

Please sign in to comment.