Clean up our Docker scripts (#8214)

* rewrite build step

* rewrite deploy script

* fix exit status

* clean up comments

* fix typo

* correct comment
This commit is contained in:
Brad Warren
2020-08-18 10:51:30 +02:00
committed by GitHub
parent e8a232297d
commit 63ec74276c
11 changed files with 110 additions and 232 deletions
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
set -ex
WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
source "$WORK_DIR/../../lib/common"
for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
BuildDockerPluginImage "${TARGET_ARCH}"
done
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
set -ex
WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
source "$WORK_DIR/../../lib/common"
for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
TagDockerImageAliases "${TARGET_ARCH}"
PushDockerImageAliases "${TARGET_ARCH}"
done
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
set -ex
WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
source "$WORK_DIR/../../lib/common"
RegisterQemuHandlers
for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
DownloadQemuStatic "${TARGET_ARCH}"
done
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
set -ex
WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
source "$WORK_DIR/../../lib/common"
for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
PushDockerImage "${TARGET_ARCH}"
done