diff options
author | Tom Rini <trini@konsulko.com> | 2024-12-08 11:07:27 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-21 12:27:46 -0600 |
commit | e64fd07cfab489d63cc52a2983a03d7f5479d1c9 (patch) | |
tree | b3bd76a4e428804d7044bc620c4a2e9bccf16243 | |
parent | 77026080054702dbb40f8f04815620f15c7ac593 (diff) |
GitLab: Add a default workflow stanza
When validating our current pipeline, a warning is produced about a lack
of a default workflow. For how we use it, we can add a simple default of
"always".
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7912eeee440..ae9120655b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,10 @@ default: tags: - ${DEFAULT_ALL_TAG} +workflow: + rules: + - when: always + # Grab our configured image. The source for this is found # in the u-boot tree at tools/docker/Dockerfile image: ${MIRROR_DOCKER}/trini/u-boot-gitlab-ci-runner:jammy-20240808-03Dec2024 |