This is an automated email from the ASF dual-hosted git repository.
areusch pushed a commit to branch areusch/freeze-dependencies
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/areusch/freeze-dependencies by
this push:
new 8bed11ef89 fix escape
8bed11ef89 is described below
commit 8bed11ef892531e7cf81f7f73b444084ddaa7ee5
Author: Andrew Reusch <[email protected]>
AuthorDate: Mon Jun 13 17:03:10 2022 -0700
fix escape
---
Jenkinsfile | 6 +++---
jenkins/DockerBuild.groovy.j2 | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 69333c13e6..b4f8a0dba9 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -45,7 +45,7 @@
// 'python3 jenkins/generate.py'
// Note: This timestamp is here to ensure that updates to the Jenkinsfile are
// always rebased on main before merging:
-// Generated at 2022-06-13T16:39:11.598304
+// Generated at 2022-06-13T17:03:01.999499
import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
// NOTE: these lines are scanned by docker/dev_common.sh. Please update the
regex as needed. -->
@@ -318,8 +318,8 @@ def ecr_push(full_name) {
sh(
script: """
set -x
- docker tag ${full_name} \$AWS_ECR_REPO/${full_name}
- docker push \$AWS_ECR_REPO/${full_name}
+ docker tag ${full_name} $AWS_ECR_REPO/${full_name}
+ docker push $AWS_ECR_REPO/${full_name}
""",
label: 'Upload image to ECR'
)
diff --git a/jenkins/DockerBuild.groovy.j2 b/jenkins/DockerBuild.groovy.j2
index 80ee66a6ae..d6df89359c 100644
--- a/jenkins/DockerBuild.groovy.j2
+++ b/jenkins/DockerBuild.groovy.j2
@@ -21,8 +21,8 @@ def ecr_push(full_name) {
sh(
script: """
set -x
- docker tag ${full_name} \$AWS_ECR_REPO/${full_name}
- docker push \$AWS_ECR_REPO/${full_name}
+ docker tag ${full_name} $AWS_ECR_REPO/${full_name}
+ docker push $AWS_ECR_REPO/${full_name}
""",
label: 'Upload image to ECR'
)