diff mbox series

Gitlab: Add DEFAULT_FAST_ARM64_TAG as well

Message ID 20241221164552.1836066-1-trini@konsulko.com
State Accepted
Delegated to: Tom Rini
Headers show
Series Gitlab: Add DEFAULT_FAST_ARM64_TAG as well | expand

Commit Message

Tom Rini Dec. 21, 2024, 4:45 p.m. UTC
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>
---
This is inspired in part by that I was able to get one of the Always
Free Ampere instances on Oracle Cloud, but being only 4 CPUs it won't be
good enough for the world build, but is fine for the "all" jobs, as well
as sandbox, I hope.
---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Tom Rini Jan. 18, 2025, 4:43 p.m. UTC | #1
On Sat, 21 Dec 2024 10:45:52 -0600, Tom Rini wrote:

> 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.
> 
> 

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7bae035319c..cec67c981428 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
@@ -116,7 +117,7 @@  build all platforms in a single job:
     - when: always
   parallel:
     matrix:
-      - HOST: "arm64"
+      - HOST: "fast arm64"
       - HOST: "fast amd64"
   tags:
     - ${HOST}