From 4bf865ba1b7cbfb32340d0f956ac0bcb29e60d40 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 14 Sep 2022 00:04:30 +0200 Subject: Use the EVENTLINE_JOB_NAME environment variable instead of reinventing the wheel --- common/clean.sh | 4 +--- common/git-clone.sh | 5 ++--- common/make.sh | 5 ++--- eventline/ev-scripts-deploy.yaml | 4 ---- www/build-images.sh | 4 +--- www/www-build.yaml | 6 ------ 6 files changed, 6 insertions(+), 22 deletions(-) diff --git a/common/clean.sh b/common/clean.sh index 1ce9e66..207bd78 100644 --- a/common/clean.sh +++ b/common/clean.sh @@ -1,6 +1,4 @@ #!/usr/bin/env bash set -euo pipefail -NAME=$1 - -rm -rf "/tmp/${NAME}" +rm -rf "/tmp/${EVENTLINE_JOB_NAME}" diff --git a/common/git-clone.sh b/common/git-clone.sh index d502aca..71f503c 100644 --- a/common/git-clone.sh +++ b/common/git-clone.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash set -euo pipefail -NAME=$1 -URL=$2 +URL=$1 -WORKDIR="/tmp/${NAME}" +WORKDIR="/tmp/${EVENTLINE_JOB_NAME}" cleanup() { rm -rf "${WORKDIR}" diff --git a/common/make.sh b/common/make.sh index f103167..ea2f53c 100644 --- a/common/make.sh +++ b/common/make.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash set -euo pipefail -NAME=$1 -TARGET=$2 +TARGET=$1 -WORKDIR="/tmp/${NAME}" +WORKDIR="/tmp/${EVENTLINE_JOB_NAME}" cleanup() { rm -rf "${WORKDIR}" diff --git a/eventline/ev-scripts-deploy.yaml b/eventline/ev-scripts-deploy.yaml index 2471747..cfb961b 100644 --- a/eventline/ev-scripts-deploy.yaml +++ b/eventline/ev-scripts-deploy.yaml @@ -4,18 +4,14 @@ steps: script: path: "../common/git-clone.sh" arguments: - - "ev-scripts-deploy" - "https://git.adyxax.org/adyxax/ev-scripts" - label: make run script: path: "../common/make.sh" arguments: - - "ev-scripts-deploy" - "run" - label: clean script: path: "../common/clean.sh" - arguments: - - "ev-scripts-deploy" identities: - eventline-self diff --git a/www/build-images.sh b/www/build-images.sh index 632cd3e..d306572 100755 --- a/www/build-images.sh +++ b/www/build-images.sh @@ -1,9 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -NAME=$1 - -WORKDIR="/tmp/${NAME}" +WORKDIR="/tmp/${EVENTLINE_JOB_NAME}" cleanup() { rm -rf "${WORKDIR}" diff --git a/www/www-build.yaml b/www/www-build.yaml index f2a4dcb..b763e54 100644 --- a/www/www-build.yaml +++ b/www/www-build.yaml @@ -7,24 +7,18 @@ steps: script: path: "../common/git-clone.sh" arguments: - - "www-build" - "https://git.adyxax.org/adyxax/www" - label: build images script: path: "build-images.sh" - arguments: - - "www-build" - label: make push script: path: "../common/make.sh" arguments: - - "www-build" - "push" - label: clean script: path: "../common/clean.sh" - arguments: - - "www-build" identities: - quay-io runner: -- cgit v1.2.3