diff options
| author | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2021-08-18 21:06:07 -0700 |
|---|---|---|
| committer | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2021-08-24 08:55:32 -0700 |
| commit | 1cbf913d7dda9441118c0b51f4020048334cd451 (patch) | |
| tree | 5a22b04882212d645fc8260ee15d3a1af2d0473a | |
| parent | 35c1dfe922a1506f641610a2fd766ce122c46727 (diff) | |
| download | numpy-1cbf913d7dda9441118c0b51f4020048334cd451.tar.gz | |
CI/CD: get submodule before build
| -rw-r--r-- | azure-pipelines.yml | 9 |
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.' |
