d827c0f166
commit 09cb17e66f46c6687fa0b9dc0895ad3279caa092 Author: jD91mZM2 <me@krake.one> Date: Mon Aug 10 18:03:20 2020 +0200 comment out cargo tests commit 1915c7306e40f5c6af36b04c765e25ad9ffe9d16 Author: jD91mZM2 <me@krake.one> Date: Mon Aug 10 17:58:52 2020 +0200 Update redoxer docker image
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
image: "redoxos/redoxer:latest"
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
default:
|
|
before_script:
|
|
- apt-get update -qq
|
|
- apt-get install -qq git
|
|
- git submodule sync --recursive
|
|
- git submodule update --init --recursive
|
|
|
|
cache:
|
|
paths:
|
|
- target/
|
|
|
|
build:linux:
|
|
stage: build
|
|
script:
|
|
- rustup toolchain add "$(cat rust-toolchain)"
|
|
- rustup show # Print version info for debugging
|
|
- make -j "$(nproc)" all
|
|
|
|
build:redox:
|
|
stage: build
|
|
variables:
|
|
TARGET: x86_64-unknown-redox
|
|
script:
|
|
- export RUSTUP_TOOLCHAIN="$HOME/.redoxer/toolchain"
|
|
- export PATH="$RUSTUP_TOOLCHAIN/bin:$PATH"
|
|
- rustup show # Print version info for debugging
|
|
- make -j "$(nproc)" all
|
|
|
|
test:linux:
|
|
stage: test
|
|
needs:
|
|
- build:linux
|
|
dependencies:
|
|
- build:linux
|
|
script:
|
|
- make test
|
|
|
|
test:redox:
|
|
stage: test
|
|
needs:
|
|
- build:redox
|
|
dependencies:
|
|
- build:redox
|
|
variables:
|
|
TARGET: x86_64-unknown-redox
|
|
script:
|
|
- export CARGO_TEST="redoxer"
|
|
- export RUSTUP_TOOLCHAIN="$HOME/.redoxer/toolchain"
|
|
- export PATH="$RUSTUP_TOOLCHAIN/bin:$PATH"
|
|
- export TEST_RUNNER="redoxer exec --folder . -- sh --"
|
|
- make test
|
|
# TODO: Out of memory
|
|
allow_failure: true
|
|
|
|
fmt:
|
|
stage: test
|
|
needs: []
|
|
script:
|
|
- rustup component add rustfmt-preview
|
|
- ./fmt.sh -- --check
|
|
allow_failure: true
|