This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 653e5fe3b3b HBASE-29187 Use double quote instead of single quote in
Jenkinsfile scripts when there are env vars (#6817)
653e5fe3b3b is described below
commit 653e5fe3b3b8c5e9dc3c130cd498c75f5292bc30
Author: Istvan Toth <[email protected]>
AuthorDate: Wed Mar 19 09:24:18 2025 +0100
HBASE-29187 Use double quote instead of single quote in Jenkinsfile scripts
when there are env vars (#6817)
Signed-off-by: Duo Zhang <[email protected]>
---
dev-support/Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 941d8f5ee0e..4bc418017c0 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -825,9 +825,9 @@ pipeline {
set -e
declare -i status=0
if "${BASEDIR}/dev-support/hbase_nightly_yetus.sh" ;
then
- echo '(/) {color:green}+1 jdk17 hadoop
${HADOOP_THREE_VERSION} backward compatibility checks{color}' >
"${OUTPUT_DIR}/commentfile"
+ echo "(/) {color:green}+1 jdk17 hadoop
${HADOOP_THREE_VERSION} backward compatibility checks{color}" >
"${OUTPUT_DIR}/commentfile"
else
- echo '(x) {color:red}-1 jdk17 hadoop
${HADOOP_THREE_VERSION} backward compatibility checks{color}' >
"${OUTPUT_DIR}/commentfile"
+ echo "(x) {color:red}-1 jdk17 hadoop
${HADOOP_THREE_VERSION} backward compatibility checks{color}" >
"${OUTPUT_DIR}/commentfile"
status=1
fi
echo "-- For more information [see jdk17
report|${BUILD_URL}JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]" >>
"${OUTPUT_DIR}/commentfile"