Merge "No-activity timeout for csit-perf jobs"
[ci-management.git] / jjb / rpm_dpdk / include-raw-rpm_dpdk-pkg-build.sh
1 #!/bin/bash
2 # basic build script example
3 set -e -o pipefail
4 # do nothing but print the current slave hostname
5 hostname
6
7 echo "cat /etc/bootstrap.sha"
8 if [ -f /etc/bootstrap.sha ];then
9     cat /etc/bootstrap.sha
10 else
11     echo "Cannot find /etc/bootstrap.sha"
12 fi
13
14 echo "cat /etc/bootstrap-functions.sha"
15 if [ -f /etc/bootstrap-functions.sha ];then
16     cat /etc/bootstrap-functions.sha
17 else
18     echo "Cannot find /etc/bootstrap-functions.sha"
19 fi
20
21 echo "sha1sum of this script: ${0}"
22 sha1sum $0
23
24 build/build.sh
25
26 echo "*******************************************************************"
27 echo "* rpm_dpdk BUILD SUCCESSFULLY COMPLETED"
28 echo "*******************************************************************"