mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-14 05:29:04 +00:00
13 lines
275 B
YAML
13 lines
275 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
|
|
- TEST_FLAGS=--contrib
|
|
- TEST_FLAGS=--core
|
|
rust:
|
|
- nightly
|
|
script: ./scripts/test.sh $TEST_FLAGS
|