From 2fa7bc9b02fd01048160bb1f3b1b9d63c9c3f7f1 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 24 May 2017 15:46:16 +0200 Subject: [PATCH] build: silence build and test script Currently the CI traces everything that runs inside of the bash script. This might have been useful when creating the script but now it really pollutes the CI output which should be clean and structured. Disabling tracing for the build and test script because the errors will still show up and the CI will look more clean. --- scripts/ci/build-and-test.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/ci/build-and-test.sh b/scripts/ci/build-and-test.sh index e5f343c42700..bd6f3f0be007 100755 --- a/scripts/ci/build-and-test.sh +++ b/scripts/ci/build-and-test.sh @@ -1,7 +1,10 @@ -#!/usr/bin/env bash -set -ex +#!/bin/bash -echo "======= Starting build-and-test.sh ========================================" +set -e + +echo "" +echo "Building sources and running tests. Running mode: ${MODE}" +echo "" # Go to project dir cd $(dirname $0)/../..