Skip to content
Snippets Groups Projects
Forked from redox-os / redoxfs
150 commits behind the upstream repository.
.gitlab-ci.yml 430 B
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
    script: redoxer test --verbose