From 4601852c0cbd9e8a5fd77934f35bf5a0c4a5312a Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 4 Aug 2023 19:55:42 -0700 Subject: [PATCH] remove old unused env vars --- Jenkinsfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e4c00c48..ae2e57a0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,14 +11,11 @@ pipeline { environment { // AWS_ECR_URL needs to be set in jenkin's config. // AWS_ECR_URL could really be any docker registry. we just use ECR so that we don't have to manage it - REGISTRY="${AWS_ECR_URL}/web3-proxy" + + REPO_NAME="web3-proxy" // branch that should get tagged with "latest_$arch" (stable, main, master, etc.) LATEST_BRANCH="main" - - // non-buildkit builds are officially deprecated - // buildkit is much faster and handles caching much better than the default build process. - DOCKER_BUILDKIT=1 } stages { stage('build and push') {