Skip to content
Snippets Groups Projects
Commit f0450a45 authored by SamwiseFilmore's avatar SamwiseFilmore Committed by Jeremy Soller
Browse files

Gitlab CI

parent e9a7181e
No related branches found
No related tags found
No related merge requests found
image: "redoxos/redox"
stages:
- build
- test
before_script:
- rustup target add x86_64-unknown-redox --toolchain nightly
- rustup show # Print version info for debugging
cache:
paths:
- target/
build:linux:cargo:
stage: build
script: cargo +nightly build --verbose
build:redox:cargo:
stage: build
script:
- mkdir .cargo
- echo -e "[target.x86_64-unknown-redox]\nlinker = \"x86_64-unknown-redox-gcc\"" > .cargo/config
- cargo +nightly build --verbose --target x86_64-unknown-redox
test:linux:cargo:
stage: test
dependencies:
- build:linux:cargo
script: cargo +nightly test --verbose
# TODO: Set up a docker image with a redox vm that would allow to
# run things like tests under redox
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment