Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
629d45ea
Unverified
Commit
629d45ea
authored
Apr 19, 2026
by
Kevin H. Luu
Committed by
GitHub
Apr 19, 2026
Browse files
[ci] Make ecr authenticate non blocking (#40305)
Signed-off-by:
Kevin H. Luu
<
khluu000@gmail.com
>
parent
f150107e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
.buildkite/image_build/image_build.sh
.buildkite/image_build/image_build.sh
+2
-2
.buildkite/image_build/image_build_cpu.sh
.buildkite/image_build/image_build_cpu.sh
+1
-1
.buildkite/image_build/image_build_cpu_arm64.sh
.buildkite/image_build/image_build_cpu_arm64.sh
+1
-1
No files found.
.buildkite/image_build/image_build.sh
View file @
629d45ea
...
@@ -92,8 +92,8 @@ check_and_skip_if_image_exists() {
...
@@ -92,8 +92,8 @@ check_and_skip_if_image_exists() {
}
}
ecr_login
()
{
ecr_login
()
{
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
||
true
aws ecr get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
936637512419.dkr.ecr.us-east-1.amazonaws.com
aws ecr get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
936637512419.dkr.ecr.us-east-1.amazonaws.com
||
true
}
}
prepare_cache_tags
()
{
prepare_cache_tags
()
{
...
...
.buildkite/image_build/image_build_cpu.sh
View file @
629d45ea
...
@@ -11,7 +11,7 @@ REPO=$2
...
@@ -11,7 +11,7 @@ REPO=$2
BUILDKITE_COMMIT
=
$3
BUILDKITE_COMMIT
=
$3
# authenticate with AWS ECR
# authenticate with AWS ECR
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
||
true
# skip build if image already exists
# skip build if image already exists
if
[[
-z
$(
docker manifest inspect
"
$REGISTRY
"
/
"
$REPO
"
:
"
$BUILDKITE_COMMIT
"
-cpu
)
]]
;
then
if
[[
-z
$(
docker manifest inspect
"
$REGISTRY
"
/
"
$REPO
"
:
"
$BUILDKITE_COMMIT
"
-cpu
)
]]
;
then
...
...
.buildkite/image_build/image_build_cpu_arm64.sh
View file @
629d45ea
...
@@ -11,7 +11,7 @@ REPO=$2
...
@@ -11,7 +11,7 @@ REPO=$2
BUILDKITE_COMMIT
=
$3
BUILDKITE_COMMIT
=
$3
# authenticate with AWS ECR
# authenticate with AWS ECR
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
aws ecr-public get-login-password
--region
us-east-1 | docker login
--username
AWS
--password-stdin
"
$REGISTRY
"
||
true
# skip build if image already exists
# skip build if image already exists
if
[[
-z
$(
docker manifest inspect
"
$REGISTRY
"
/
"
$REPO
"
:
"
$BUILDKITE_COMMIT
"
-arm64-cpu
)
]]
;
then
if
[[
-z
$(
docker manifest inspect
"
$REGISTRY
"
/
"
$REPO
"
:
"
$BUILDKITE_COMMIT
"
-arm64-cpu
)
]]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment