diff options
author | Tom Rini <trini@konsulko.com> | 2024-12-21 10:45:52 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-18 08:29:36 -0600 |
commit | 319b2e655a6be4304decb8d38c651e2adaf7e9cf (patch) | |
tree | 7bcbc71e4d5c75cd5a7a96897fd4a98802c3094d | |
parent | bbfa4fe13ca7645bd3033513dda48920e7c25542 (diff) |
Gitlab: Add DEFAULT_FAST_ARM64_TAG as well
Upon further consideration, we should have both DEFAULT_FAST_ARM64_TAG
and DEFAULT_ARM64_TAG values available. This will allow us to later run
a matrix of some jobs, such as sandbox, on any arm64 host and still keep
the world build to only fast arm64 hosts.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d91e9e3ff43..a4340946a8a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ variables: DEFAULT_ALL_TAG: "all" DEFAULT_ARM64_TAG: "arm64" + DEFAULT_FAST_ARM64_TAG: "fast arm64" DEFAULT_AMD64_TAG: "amd64" DEFAULT_FAST_AMD64_TAG: "fast amd64" MIRROR_DOCKER: docker.io @@ -113,7 +114,7 @@ build all platforms in a single job: dependencies: [] parallel: matrix: - - HOST: "arm64" + - HOST: "fast arm64" - HOST: "fast amd64" tags: - ${HOST} |