1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-28 15:02:18 +01:00
redox-ssh/.gitlab-ci.yml

33 lines
No EOL
560 B
YAML

image: "docker.io/redoxos/redoxer"
stages:
- build
- test
cache:
paths:
- target/
build:redox:
stage: build
script: redoxer build --verbose
test:redox:
stage: test
dependencies:
- build:redox
script: redoxer test --verbose
build:linux:
stage: build
image: docker.io/library/rust:alpine
script:
- apk add musl-dev
- cargo build --verbose
test:linux:
stage: test
image: docker.io/library/rust:alpine
dependencies:
- build:linux
script: cargo test --verbose