12345678910111213141516171819202122232425262728293031323334353637 |
- image: "rustlang/rust:nightly"
- stages:
- - build
- - test
- before_script:
- - git submodule update --init --recursive
- - rustup target add x86_64-unknown-redox --toolchain nightly
- - rustup show # Print version info for debugging
- cache:
- untracked: true
- build:linux:
- stage: build
- script:
- - make all
- #build:redox:
- # stage: build
- # script:
- # - make all
- test:linux:
- stage: test
- dependencies:
- - build:linux
- script:
- - make test
- fmt:
- stage: test
- script:
- - rustup component add rustfmt-preview
- - ./fmt.sh -- --check
- allow_failure: true
|