From b2be8319a7a293737f8f2b5f258ecc754f20a97b Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Mon, 10 Oct 2016 19:57:39 +0200 Subject: fuel, armband: build, deploy: export TERM="vt220" Since we do not actually parse our build/deploy logs for color chars, set the terminal to "vt220". This will silence quite a few of colorization special identifiers, but NOT all of them (e.g. `tput sgr0` still prints a sequence). For Fuel@OPNFV build process, we also need to workaround docker terminal settings not being passed down when using a tty (see [1]), which will be fixed in Docker 1.13+. This fix is handled in [2]. [1] https://github.com/docker/docker/issues/9299 [2] https://gerrit.opnfv.org/gerrit/#/c/22883/ Change-Id: I5f0c6eae33349ef81b67dd17e6df4e0af6274fab Signed-off-by: Alexandru Avadanii --- jjb/armband/build.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'jjb/armband/build.sh') diff --git a/jjb/armband/build.sh b/jjb/armband/build.sh index 300306f77..a058ca158 100755 --- a/jjb/armband/build.sh +++ b/jjb/armband/build.sh @@ -12,6 +12,8 @@ set -o errexit set -o nounset set -o pipefail +export TERM="vt220" + echo "Host info: $(hostname) $(hostname -I)" cd $WORKSPACE -- cgit 1.2.3-korg