From 532b3063be3da51374abc85e7f98330bed008d16 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Thu, 1 Oct 2020 09:20:58 +0200 Subject: [PATCH] ci: No need to build Docker image locally for arm64 Now that Docker images are automatically generated for both amd64 and arm64 architectures, there's no need to generate the arm64 image locally on the ARM CI during a CI run. The image should be available from DockerHub instead. Signed-off-by: Sebastien Boeuf --- scripts/dev_cli.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/dev_cli.sh b/scripts/dev_cli.sh index ed9da1c59..fc7c7ad47 100755 --- a/scripts/dev_cli.sh +++ b/scripts/dev_cli.sh @@ -427,9 +427,4 @@ if [ $(uname -m) = "x86_64" ]; then ensure_latest_ctr fi -# Before a public image for AArch64 ready, we build the container if needed. -if [ $(uname -m) = "aarch64" ]; then - cmd_build-container -fi - $cmd "$@"