diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2018-12-26 21:07:12 -0800 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-01-06 20:04:30 -0800 |
commit | a5c35798fad659100df16146f5ab886e45d324ab (patch) | |
tree | 4ff45af2be41d7a7e02f5e474cf1d725458ded21 /azure-pipelines.yml | |
parent | b8849260eb9e9222449972326c7fdfe6db3b6c57 (diff) | |
download | numpy-a5c35798fad659100df16146f5ab886e45d324ab.tar.gz |
BLD: move -std=c99 from runtests.py to Azure config
See gh-12610 for details.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6e7975039..d935c3c6c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,7 +27,7 @@ jobs: cd ../numpy && \ NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 \ F77=gfortran-5 F90=gfortran-5 \ - CFLAGS=-UNDEBUG python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml" + CFLAGS='-UNDEBUG -std=c99' python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml" displayName: 'Run 32-bit Ubuntu Docker Build / Tests' - task: PublishTestResults@2 inputs: |