-
Basti Endres authored
The default runner image is `build-image` from docker/images repo.
Basti Endres authoredThe default runner image is `build-image` from docker/images repo.
.gitlab-ci.yml 469 B
---
stages:
- build
- release
variables:
GIT_SUBMODULE_STRATEGY: recursive
build:
stage: build
script:
- make -s infoheft
tags:
- docker
artifacts:
name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
paths:
- output/
expire_in: 1 day
release:
stage: release
script:
- make -s infoheft
tags:
- docker
artifacts:
name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
paths:
- output/
only:
- release
...