2018-07-19 18:52:13 +02:00
|
|
|
sudo: false
|
|
|
|
language: rust
|
2019-07-03 16:27:06 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cargo
|
2018-07-19 18:52:13 +02:00
|
|
|
|
2018-11-07 14:07:12 +01:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2018-07-19 18:52:13 +02:00
|
|
|
rust:
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
script:
|
2019-08-10 14:06:08 +02:00
|
|
|
- ./prepare.sh
|
|
|
|
- ./test.sh --release
|
2018-07-19 18:52:13 +02:00
|
|
|
|
2018-07-19 18:58:30 +02:00
|
|
|
env:
|
2019-08-10 14:06:08 +02:00
|
|
|
global:
|
|
|
|
# Enable backtraces for easier debugging.
|
|
|
|
- RUST_BACKTRACE=1
|
|
|
|
# Reduce amount of benchmark runs as they are slow.
|
|
|
|
- COMPILE_RUNS=2 RUN_RUNS=2
|