Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Reduce load on CI due to excessive log flood (#17629)
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy authored Feb 20, 2020
1 parent c215b33 commit b68a05d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ build_armv6() {
-Dmxnet_LINKER_LIBS=-lgfortran \
-G Ninja /work/mxnet

ninja -v
ninja
build_wheel
popd
}
Expand Down Expand Up @@ -319,7 +319,7 @@ build_armv7() {
-Dmxnet_LINKER_LIBS=-lgfortran \
-G Ninja /work/mxnet

ninja -v
ninja
build_wheel
popd
}
Expand All @@ -336,7 +336,7 @@ build_armv8() {
-DCMAKE_BUILD_TYPE=Release\
-DUSE_MKL_IF_AVAILABLE=OFF\
-G Ninja /work/mxnet
ninja -v
ninja
build_wheel
}

Expand All @@ -361,7 +361,7 @@ build_android_armv7() {
-DCMAKE_BUILD_TYPE=RelWithDebInfo\
-DUSE_MKL_IF_AVAILABLE=OFF\
-G Ninja /work/mxnet
ninja -v
ninja
}

build_android_armv8() {
Expand All @@ -379,7 +379,7 @@ build_android_armv8() {
-DCMAKE_BUILD_TYPE=RelWithDebInfo\
-DUSE_MKL_IF_AVAILABLE=OFF\
-G Ninja /work/mxnet
ninja -v
ninja
}

build_centos7_cpu() {
Expand Down Expand Up @@ -412,7 +412,7 @@ build_amzn_linux_cpu() {
-DUSE_LAPACK=OFF\
-DUSE_DIST_KVSTORE=ON\
-G Ninja /work/mxnet
ninja -v
ninja
}

build_centos7_mkldnn() {
Expand Down Expand Up @@ -504,7 +504,7 @@ build_ubuntu_cpu_cmake_debug() {
-G Ninja \
/work/mxnet

ninja -v
ninja
popd
}

Expand All @@ -525,7 +525,7 @@ build_ubuntu_cpu_cmake_no_tvm_op() {
-G Ninja \
/work/mxnet

ninja -v
ninja
popd
}

Expand Down Expand Up @@ -609,7 +609,7 @@ build_ubuntu_cpu_clang_tidy() {
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
/work/mxnet

ninja -v
ninja
cd /work/mxnet
$CLANG_TIDY -p /work/build -j $(nproc) -clang-tidy-binary clang-tidy-6.0 /work/mxnet/src
popd
Expand Down Expand Up @@ -730,7 +730,7 @@ build_ubuntu_gpu_tensorrt() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_gpu_mkldnn() {
Expand Down Expand Up @@ -862,7 +862,7 @@ build_ubuntu_gpu_cmake_mkldnn() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_gpu_cmake() {
Expand All @@ -885,7 +885,7 @@ build_ubuntu_gpu_cmake() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_gpu_cmake_no_rtc() {
Expand All @@ -909,7 +909,7 @@ build_ubuntu_gpu_cmake_no_rtc() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_gpu_cmake_no_tvm_op() {
Expand All @@ -932,7 +932,7 @@ build_ubuntu_gpu_cmake_no_tvm_op() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_cpu_large_tensor() {
Expand All @@ -949,7 +949,7 @@ build_ubuntu_cpu_large_tensor() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_gpu_large_tensor() {
Expand All @@ -972,7 +972,7 @@ build_ubuntu_gpu_large_tensor() {
-G Ninja \
/work/mxnet

ninja -v
ninja
}

build_ubuntu_blc() {
Expand Down

0 comments on commit b68a05d

Please sign in to comment.