Skip to content

Commit 1c9637f

Browse files
committed
(travis) add some echo's
1 parent d950b5c commit 1c9637f

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

scripts/travis/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ BASEDIR=$(dirname $0)
55
source $BASEDIR/defaults.sh
66

77
if ! $WITH_CMAKE ; then
8+
echo -e "\e[35m\e[1mmake --jobs $NUM_THREADS all test pycaffe warn\e[0m"
89
make --jobs $NUM_THREADS all test pycaffe warn
910
else
11+
echo -e "\e[35m\e[1mcd build; make --jobs $NUM_THREADS all test.testbin\e[0m"
1012
cd build
1113
make --jobs $NUM_THREADS all test.testbin
1214
fi
15+
echo -e "\e[35m\e[1mmake lint\e[0m"
1316
make lint

scripts/travis/configure-cmake.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# CMake configuration
22

3+
echo -e "\e[35m\e[1mmkdir -p build; cd build\e[0m"
34
mkdir -p build
45
cd build
56

@@ -24,4 +25,5 @@ else
2425
ARGS="$ARGS -DUSE_CUDNN=Off"
2526
fi
2627

28+
echo -e "\e[35m\e[1mcmake .. ${ARGS}\e[0m"
2729
cmake .. $ARGS

scripts/travis/configure-make.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# raw Makefile configuration
22

33
LINE () {
4+
echo -e "\e[35m\e[1m$@\e[0m"
45
echo "$@" >> Makefile.config
56
}
67

8+
echo -e "\e[35m\e[1mcp Makefile.config.example Makefile.config\e[0m"
79
cp Makefile.config.example Makefile.config
810

911
LINE "BLAS := open"

0 commit comments

Comments
 (0)