This is an automated email from the ASF dual-hosted git repository.
nnag pushed a commit to branch release/1.7.0
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/release/1.7.0 by this push:
new db56584 Fix instance naming for heavy-lifters on release branches
(#2437)
db56584 is described below
commit db56584beaeffd39116af9f7816b1e074f32e0fe
Author: Robert Houghton <[email protected]>
AuthorDate: Fri Sep 7 10:40:50 2018 -0700
Fix instance naming for heavy-lifters on release branches (#2437)
* Remove windows tests from concourse
* Concourse heavy-lifter instances cannot have periods in the name
Fix sanitize utilities for branch and fork names
---
ci/pipelines/shared/utilities.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ci/pipelines/shared/utilities.sh b/ci/pipelines/shared/utilities.sh
index 4365908..e075515 100644
--- a/ci/pipelines/shared/utilities.sh
+++ b/ci/pipelines/shared/utilities.sh
@@ -18,9 +18,9 @@
getSanitizedBranch () {
- echo ${1} | tr "/" "-" | tr '[:upper:]' '[:lower:]' | cut -c 1-20
+ echo ${1} | tr "/" "-" | tr "." "_" | tr '[:upper:]' '[:lower:]' | cut -c
1-20
}
getSanitizedFork () {
- echo ${1} | tr "/" "-" | tr '[:upper:]' '[:lower:]' | cut -c 1-16
+ echo ${1} | tr "/" "-" | tr "." "_" | tr '[:upper:]' '[:lower:]' | cut -c
1-16
}