summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--azure-pipelines.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 714f62912..99ea407be 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -24,6 +24,9 @@ stages:
vmImage: 'ubuntu-20.04'
steps:
- script: |
+ git submodule update --init
+ displayName: 'Fetch submodules'
+ - script: |
if ! `gcc 2>/dev/null`; then
sudo apt install gcc
fi
@@ -72,6 +75,9 @@ stages:
vmImage: 'ubuntu-20.04'
steps:
- script: |
+ git submodule update --init
+ displayName: 'Fetch submodules'
+ - script: |
docker run -v $(pwd):/numpy -e CFLAGS="-msse2 -std=c99 -UNDEBUG" \
-e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2014_i686 \
/bin/bash -xc "cd numpy && \
@@ -259,6 +265,9 @@ stages:
vmImage: 'ubuntu-20.04'
steps:
- script: |
+ git submodule update --init
+ displayName: 'Fetch submodules'
+ - script: |
# create and activate conda environment
conda env create -f environment.yml
displayName: 'Create conda environment.'