diff options
author | mattip <matti.picus@gmail.com> | 2019-09-16 10:15:51 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-09-20 09:35:48 +0300 |
commit | a68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc (patch) | |
tree | e22a36b5a24fbb9d2ef7760a5c12c67334194554 /azure-pipelines.yml | |
parent | f5487746586045d1be89e1205108fe0f1808def0 (diff) | |
download | numpy-a68c5b8a8d73fe7898ba6b96bb7f75b8f378d0cc.tar.gz |
BUILD: mostly restore verbose output on CI (except for pip install)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ef0a122ba..ab421ab21 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,7 @@ jobs: python3 -m pip install --user -r test_requirements.txt && \ python3 -m pip install . && \ F77=gfortran-5 F90=gfortran-5 \ - CFLAGS='-UNDEBUG -std=c99' python3 runtests.py -n --mode=full -- -rsx --junitxml=junit/test-results.xml && \ + CFLAGS='-UNDEBUG -std=c99' python3 runtests.py -n --debug-configure --mode=full -- -rsx --junitxml=junit/test-results.xml && \ python3 tools/openblas_support.py --check_version $(OpenBLAS_version)" displayName: 'Run 32-bit Ubuntu Docker Build / Tests' - task: PublishTestResults@2 @@ -94,7 +94,7 @@ jobs: displayName: 'Check for unreachable code paths in Python modules' # prefer usage of clang over gcc proper # to match likely scenario on many user mac machines - - script: python setup.py build -j 4 install + - script: python setup.py build --debug-configure -j 4 install displayName: 'Build NumPy' env: BLAS: None |