diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-03-23 12:41:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 12:41:24 +0200 |
commit | ad0049026f4afa5d6e8312c1a46b3777be396104 (patch) | |
tree | 599870695ec5f597136bebb29e22f472f39860d4 /azure-pipelines.yml | |
parent | 5b126f882bc90a22f7fe20518f727eafe8238d86 (diff) | |
download | numpy-ad0049026f4afa5d6e8312c1a46b3777be396104.tar.gz |
TST: switch PyPy job with CPython [skip travis] (#15809)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6b1ff4c28..20a240236 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -218,18 +218,34 @@ stages: OPENBLAS_SUFFIX: '64_' steps: - template: azure-steps-windows.yml - - job: Linux_PyPy3 + # - job: Linux_PyPy3 + # pool: + # vmIMage: 'ubuntu-18.04' + # steps: + # - script: source tools/pypy-test.sh + # displayName: 'Run PyPy3 Build / Tests' + # - task: PublishTestResults@2 + # condition: succeededOrFailed() + # inputs: + # testResultsFiles: '**/test-*.xml' + # testRunTitle: 'Publish test results for PyPy3' + # failTaskOnFailedTests: true + - job: Linux_18_04 pool: - vmIMage: 'ubuntu-18.04' + vmImage: 'ubuntu-18.04' steps: - - script: source tools/pypy-test.sh - displayName: 'Run PyPy3 Build / Tests' + - script: | + python3 -m pip install --user --upgrade pip setuptools + python3 -m pip install --user -r test_requirements.txt + CPPFLAGS='' F77=gfortran-5 F90=gfortran-5 \ + python3 runtests.py --debug-info --mode=full -- -rsx --junitxml=junit/test-results.xml + displayName: 'Run Linux 18.04 Build / Tests' - task: PublishTestResults@2 condition: succeededOrFailed() inputs: testResultsFiles: '**/test-*.xml' - testRunTitle: 'Publish test results for PyPy3' failTaskOnFailedTests: true + testRunTitle: 'Publish test results for gcc 4.8' - job: Linux_gcc48 pool: vmImage: 'ubuntu-18.04' |