Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HBASE-22920 github pr testing job should use dev-support script #883

Merged
merged 2 commits into from Dec 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 1 addition & 12 deletions dev-support/Jenkinsfile_GitHub
Expand Up @@ -83,19 +83,8 @@ pipeline {
echo "MAVEN_HOME: ${MAVEN_HOME}"
echo "maven version:"
mvn --offline --version || true
echo "getting machine specs, find in ${BUILD_URL}/artifact/patchprocess/machine/"
mkdir "${PATCHDIR}/machine"
cat /proc/cpuinfo >"${PATCHDIR}/machine/cpuinfo" 2>&1 || true
cat /proc/meminfo >"${PATCHDIR}/machine/meminfo" 2>&1 || true
cat /proc/diskstats >"${PATCHDIR}/machine/diskstats" 2>&1 || true
cat /sys/block/sda/stat >"${PATCHDIR}/machine/sys-block-sda-stat" 2>&1 || true
df -h >"${PATCHDIR}/machine/df-h" 2>&1 || true
ps -Awwf >"${PATCHDIR}/machine/ps-Awwf" 2>&1 || true
ifconfig -a >"${PATCHDIR}/machine/ifconfig-a" 2>&1 || true
lsblk -ta >"${PATCHDIR}/machine/lsblk-ta" 2>&1 || true
lsblk -fa >"${PATCHDIR}/machine/lsblk-fa" 2>&1 || true
cat /proc/loadavg >"${output}/loadavg" 2>&1 || true
ulimit -a >"${PATCHDIR}/machine/ulimit-a" 2>&1 || true
"${SOURCEDIR}/dev-support/gather_machine_environment.sh" "${PATCHDIR}/machine"
## /H*

# If CHANGE_URL is set (e.g., Github Branch Source plugin), process it.
Expand Down