termion/.gitlab-ci.yml

43 lines
695 B
YAML
Raw Normal View History

2019-07-06 18:48:52 +01:00
image: "redoxos/redoxer"
2018-08-20 23:19:19 +01:00
stages:
2019-07-06 18:48:52 +01:00
- build
- test
2018-08-20 23:19:19 +01:00
cache:
2019-07-06 18:48:52 +01:00
paths:
- target/
2019-07-06 19:02:32 +01:00
before_script:
rustup update stable
2019-07-06 18:48:52 +01:00
build:linux:stable:
stage: build
script: cargo +stable build --verbose
build:linux:
stage: build
script: cargo +nightly build --verbose
build:redox:
stage: build
script: redoxer build --verbose
test:linux:stable:
stage: test
dependencies:
- build:linux:stable
script: cargo +stable test --verbose
test:linux:
stage: test
dependencies:
- build:linux
script: cargo +nightly test --verbose
test:redox:
stage: test
dependencies:
- build:redox
script: redoxer test --verbose