summaryrefslogtreecommitdiff
path: root/.github/scripts/restore-otp-image.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/scripts/restore-otp-image.sh')
-rwxr-xr-x.github/scripts/restore-otp-image.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/.github/scripts/restore-otp-image.sh b/.github/scripts/restore-otp-image.sh
deleted file mode 100755
index 57621c25d5..0000000000
--- a/.github/scripts/restore-otp-image.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-BASE_BRANCH="$1"
-BASE_TAG=$(grep "ARG BASE=" ".github/dockerfiles/Dockerfile.64-bit" | head -1 | tr '=' ' ' | awk '{print $3}')
-
-BASE_TAG="$BASE_TAG" .github/scripts/build-base-image.sh "${BASE_BRANCH}"
-
-cat > Dockerfile <<EOF
-FROM ${BASE_TAG}
-ADD otp-ubuntu-20.04.tar.gz /
-WORKDIR /buildroot/otp/
-EOF
-docker build -t otp .