redox/.gitlab-ci.yml

20 lines
465 B
YAML

image: "ubuntu:22.04"
variables:
GIT_STRATEGY: "clone"
GIT_SUBMODULE_STRATEGY: "recursive"
img:
script:
- |
apt-get update -qq &&
apt-get install -qq -y curl &&
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none &&
source "$HOME/.cargo/env" &&
./bootstrap.sh -d &&
make ci-img IMG_TAG=$CI_COMMIT_REF_NAME
artifacts:
paths:
- build/img/
expire_in: 1 week