redox/.gitlab-ci.yml

16 lines
291 B
YAML
Raw Normal View History

2023-03-01 19:22:31 +01:00
image: "ubuntu:22.04"
2019-06-20 04:11:31 +02:00
2018-06-10 02:04:59 +02:00
variables:
2018-06-10 17:54:05 +02:00
GIT_SUBMODULE_STRATEGY: "recursive"
2018-06-10 01:11:01 +02:00
2018-06-10 17:54:05 +02:00
img:
2018-06-10 04:16:45 +02:00
script:
- |
2023-03-01 19:32:53 +01:00
./bootstrap.sh -d &&
2018-06-10 04:16:45 +02:00
source "$HOME/.cargo/env" &&
2018-06-10 17:54:05 +02:00
make ci-img IMG_TAG=$CI_COMMIT_REF_NAME
2018-06-11 02:56:53 +02:00
artifacts:
paths:
- build/img/
expire_in: 1 week