31 lines
551 B
YAML
31 lines
551 B
YAML
image: "redoxos/redoxer"
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
cache:
|
|
paths:
|
|
- target/
|
|
|
|
build:linux:
|
|
stage: build
|
|
script: cargo +nightly build --verbose
|
|
|
|
build:redox:
|
|
stage: build
|
|
script: redoxer build --verbose
|
|
|
|
test:linux:
|
|
stage: test
|
|
dependencies:
|
|
- build:linux
|
|
script: cargo +nightly test --verbose
|
|
|
|
test:redox:
|
|
stage: test
|
|
dependencies:
|
|
- build:redox
|
|
# only run integration test as without KVM unit tests is super slow
|
|
script: redoxer test --verbose -- --test '*' -- --nocapture
|