Skip to content

Commit 426a644

Browse files
devversiontinayuangao
authored andcommitted
build: silence build and test script (#4770)
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.
1 parent 58c8404 commit 426a644

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

scripts/ci/build-and-test.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
#!/usr/bin/env bash
2-
set -ex
1+
#!/bin/bash
32

4-
echo "======= Starting build-and-test.sh ========================================"
3+
set -e
4+
5+
echo ""
6+
echo "Building sources and running tests. Running mode: ${MODE}"
7+
echo ""
58

69
# Go to project dir
710
cd $(dirname $0)/../..

0 commit comments

Comments
 (0)