diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-03-15 16:29:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 16:29:47 +0100 |
commit | 26527695f9ee7b7bc3fdd3af67d7e8b068cb1e0b (patch) | |
tree | a74522d52116fa9494317497a922ae416ded373e | |
parent | 90133e16d02c67206e350ce222d76f938596706f (diff) | |
parent | dc9d3f9708155bb85a47ebbec3f5c6aeac6ca735 (diff) | |
download | numpy-26527695f9ee7b7bc3fdd3af67d7e8b068cb1e0b.tar.gz |
Merge pull request #15757 from WarrenWeckesser/fix-azure-pipelines
MAINT: CI: Add an explicit 'pr' section to azure-pipelines.yml
-rw-r--r-- | azure-pipelines.yml | 5 | ||||
-rwxr-xr-x | tools/pypy-test.sh | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c6b54f2cb..6d4944c92 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,6 +6,11 @@ trigger: - master - maintenance/* +pr: + branches: + include: + - '*' # must quote since "*" is a YAML reserved character; we want a string + stages: - stage: InitialTests jobs: diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index 5e77d8046..e98c12587 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -6,6 +6,7 @@ set -o pipefail # Print expanded commands set -x +sudo apt-get -yq update sudo apt-get -yq install libatlas-base-dev liblapack-dev gfortran-5 python3-urllib3 F77=gfortran-5 F90=gfortran-5 \ |