Files
RedBear-OS/.gitlab-ci.yml
T
2025-12-10 12:52:08 +07:00

37 lines
553 B
YAML

image: "redoxos/redoxer:latest"
stages:
- build
- cross-build
# TODO?
# - test
fmt:
stage: build
script:
- rustup component add rustfmt
- CHECK_ONLY=1 ./fmt.sh
# TODO: unit tests
x86_64:
stage: build
script:
- rustup component add rustfmt
- ./check.sh
i586:
stage: cross-build
script:
- ./check.sh --arch=i586
aarch64:
stage: cross-build
script:
- ./check.sh --arch=aarch64
riscv64gc:
stage: cross-build
script:
- ./check.sh --arch=riscv64gc