diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-02-15 14:26:31 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2023-02-15 14:26:31 +0100 |
commit | de208a0e38b1e0dc5b537033e1e6e3b3f1e15702 (patch) | |
tree | b12b6eded7891885323a49e599202f0753f3c81a /azure-pipelines.yml | |
parent | 0bd56e7ec12f8ceeb8d082340e71e60b873d5c57 (diff) | |
download | numpy-de208a0e38b1e0dc5b537033e1e6e3b3f1e15702.tar.gz |
CI: Ensure submodules are initialized on MacOS CI
For some reason this didn't show up on the original PR or was missed
but is now making CI fail after the sorting merge.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7657ab87f..2b918c87d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -140,6 +140,9 @@ stages: NPY_USE_BLAS_ILP64: '1' USE_OPENBLAS: '1' steps: + - script: | + git submodule update --init + displayName: 'Fetch submodules' # the @0 refers to the (major) version of the *task* on Microsoft's # end, not the order in the build matrix nor anything to do # with version of Python selected |