mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-28 05:12:36 +00:00
11 lines
228 B
YAML
11 lines
228 B
YAML
language: rust
|
|
sudo: required # so we get a VM with higher specs
|
|
dist: trusty # so we get a VM with higher specs
|
|
cache: cargo
|
|
env:
|
|
- TEST_FLAGS=
|
|
- TEST_FLAGS=--release
|
|
rust:
|
|
- nightly
|
|
script: ./scripts/test.sh $TEST_FLAGS
|