Skip to content

Commit ed072ac

Browse files
committed
debug
1 parent 5ee0aca commit ed072ac

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ install:
8585
8686
script:
8787
# Build library and collect into libs subdirectory
88-
- build_on_travis
88+
- travis_wait 20 build_on_travis
8989
- libc=${MB_ML_LIBC:-manylinux}
9090
- docker_image=quay.io/pypa/${libc}${MB_ML_VER}_${PLAT}
9191
- docker run --rm -e INTERFACE64="${INTERFACE64}" -e MB_ML_LIBC="${MB_ML_LIBC}" -v $(pwd):/openblas "${docker_image}" /bin/bash -xe /openblas/tools/build_wheel.sh

tools/build_steps.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,14 @@ function do_build_lib {
173173
mkdir -p libs
174174
start_spinner
175175
set -x
176-
echo git config
177176
git config --global --add safe.directory '*'
178177
pushd OpenBLAS
179178
patch_source
180179
echo start building
181180
CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
182181
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
183182
USE_OPENMP=0 NUM_THREADS=64 \
184-
BINARY=$bitness $interface_flags $target_flags shared
183+
BINARY=$bitness $interface_flags $target_flags shared 2>&1 1>/dev/null
185184
echo done building, now testing
186185
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
187186
USE_OPENMP=0 NUM_THREADS=64 \

0 commit comments

Comments
 (0)