This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new 5f115e5218b HBASE-29187 Use double quote instead of single quote in
Jenkinsfile scripts when there are env vars (#6817)
5f115e5218b is described below
commit 5f115e5218b69587550a648abfdf59eab224f9e3
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 8af27ec1232..617e23f3727 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -826,9 +826,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"