This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch branch-2.6
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.6 by this push:
new d50a73fb828 HBASE-29187 Use double quote instead of single quote in
Jenkinsfile scripts when there are env vars (#6817)
d50a73fb828 is described below
commit d50a73fb82807591db9b29de5743a5e0a7ce084c
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]>
(cherry picked from commit 653e5fe3b3b8c5e9dc3c130cd498c75f5292bc30)
---
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"