Update file .gitlab-ci.yml

This commit is contained in:
stanzabird 2023-02-16 20:00:05 +00:00
parent 01eff4b863
commit 363aa2c9f6

View file

@ -4,14 +4,17 @@ stages:
- release - release
# Notes; we want short labes so we can see what is what, and
# allow image builds on all branches because don't wan to
# deal with them on the master branch
Images: Images:
stage: images stage: images
when: manual when: manual
image: registry.gitlab.com/librewolf-community/browser/bsys5/dind image: registry.gitlab.com/librewolf-community/browser/bsys5/dind
tags: [autoscale] tags: [autoscale]
# checkout our submodules
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- git submodule sync
- git submodule update --init --recursive
parallel: parallel:
matrix: matrix:
- DISTRO: - DISTRO:
@ -31,6 +34,7 @@ Images:
- make docker-$DISTRO - make docker-$DISTRO
- docker push registry.gitlab.com/librewolf-community/browser/bsys5/$DISTRO:latest - docker push registry.gitlab.com/librewolf-community/browser/bsys5/$DISTRO:latest
Build: Build:
stage: build stage: build
when: manual when: manual
@ -80,6 +84,7 @@ Build:
reports: reports:
dotenv: variables.env dotenv: variables.env
Release: Release:
stage: release stage: release
when: manual when: manual