diff mbox

[4/6] travis: set -vx on all build scripts

Message ID 20170824073948.29425-5-stewart@linux.vnet.ibm.com
State Accepted
Headers show

Commit Message

Stewart Smith Aug. 24, 2017, 7:39 a.m. UTC
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
---
 opal-ci/build-centos6.sh      | 1 +
 opal-ci/build-centos7.sh      | 1 +
 opal-ci/build-fedora24.sh     | 2 +-
 opal-ci/build-qemu-powernv.sh | 1 +
 opal-ci/build-ubuntu-12.04.sh | 1 +
 opal-ci/build-ubuntu-16.04.sh | 1 +
 6 files changed, 6 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/opal-ci/build-centos6.sh b/opal-ci/build-centos6.sh
index 25a25f269f3b..bf6e73a68b6d 100755
--- a/opal-ci/build-centos6.sh
+++ b/opal-ci/build-centos6.sh
@@ -2,6 +2,7 @@ 
 
 set -uo pipefail
 set -e
+set -vx
 
 # We're fairly limited as to what we want to bother to run on CentOS6
 # It's fairly old and some of the things (e.g. build+run qemu) we don't
diff --git a/opal-ci/build-centos7.sh b/opal-ci/build-centos7.sh
index 0a44fc8cde92..f51222f32743 100755
--- a/opal-ci/build-centos7.sh
+++ b/opal-ci/build-centos7.sh
@@ -2,6 +2,7 @@ 
 
 set -uo pipefail
 set -e
+set -vx
 
 # We're limited as to what we want to bother to run on CentOS7
 # It's fairly old and some of the things (e.g. build+run qemu) we don't
diff --git a/opal-ci/build-fedora24.sh b/opal-ci/build-fedora24.sh
index 4fe0c0050ee1..be08259231eb 100755
--- a/opal-ci/build-fedora24.sh
+++ b/opal-ci/build-fedora24.sh
@@ -2,7 +2,7 @@ 
 
 set -uo pipefail
 set -e
-set -x
+set -vx
 
 MAKE_J=`grep -c processor /proc/cpuinfo`
 export CROSS="ccache powerpc64-linux-gnu-"
diff --git a/opal-ci/build-qemu-powernv.sh b/opal-ci/build-qemu-powernv.sh
index cbd72d37b55d..3c76d8fb7d71 100755
--- a/opal-ci/build-qemu-powernv.sh
+++ b/opal-ci/build-qemu-powernv.sh
@@ -1,5 +1,6 @@ 
 #!/bin/bash
 set -e
+set -vx
 
 git clone --depth=1 -b qemu-powernv-for-skiboot-3 git://github.com/open-power/qemu.git
 cd qemu
diff --git a/opal-ci/build-ubuntu-12.04.sh b/opal-ci/build-ubuntu-12.04.sh
index eb63c671d3de..58498edd6bea 100755
--- a/opal-ci/build-ubuntu-12.04.sh
+++ b/opal-ci/build-ubuntu-12.04.sh
@@ -2,6 +2,7 @@ 
 
 set -uo pipefail
 set -e
+set -vx
 
 export CROSS="ccache /opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/powerpc64-linux-"
 export HOSTCC="ccache gcc-4.8"
diff --git a/opal-ci/build-ubuntu-16.04.sh b/opal-ci/build-ubuntu-16.04.sh
index c9e84df3e827..71781e41061e 100755
--- a/opal-ci/build-ubuntu-16.04.sh
+++ b/opal-ci/build-ubuntu-16.04.sh
@@ -2,6 +2,7 @@ 
 
 set -uo pipefail
 set -e
+set -vx
 
 MAKE_J=`grep -c processor /proc/cpuinfo`