diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-10-31 14:39:04 -0700 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-11-19 17:19:56 -0800 |
commit | 9a6dcafc1bb95ff741da9f67a48ce3d1b599d87e (patch) | |
tree | 73200d88927e39c6d8290b25cae24f07ee4b263b | |
parent | 403d63749d0c6fe67ed9417a97d2d47de1405405 (diff) | |
download | numpy-9a6dcafc1bb95ff741da9f67a48ce3d1b599d87e.tar.gz |
TST: draft 32-bit linux Azure CI job
-rw-r--r-- | azure-pipelines.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d1e792c83..a05da2e5b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,6 +6,25 @@ trigger: - master - maintenance/* jobs: +- job: Linux_Python_36_32bit_full + pool: + vmIMage: 'ubuntu-16.04' + steps: + - script: | + docker pull i386/ubuntu:bionic + docker run -v $(pwd):/numpy i386/ubuntu:bionic /bin/bash -c "cd numpy && \ + apt-get -y update && \ + apt-get -y install python3.6-dev python3-pip locales && \ + locale-gen fr_FR && update-locale && \ + pip3 install setuptools nose cython==0.29.0 pytest pytz pickle5 && \ + apt-get -y install libopenblas-dev gfortran && \ + NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 \ + python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml" + displayName: 'Run 32-bit Ubuntu Docker Build / Tests' + - task: PublishTestResults@2 + inputs: + testResultsFiles: '**/test-*.xml' + testRunTitle: 'Publish test results for Python 3.6-32 bit' - job: macOS pool: # NOTE: at time of writing, there is a danger |