8000 BLD: use macos-11 image on azure, macos-1015 is deprecated by mattip · Pull Request #22043 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BLD: use macos-11 image on azure, macos-1015 is deprecated #22043

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add debug printing
  • Loading branch information
mattip committed Aug 16, 2022
commit 07a4352d21fbd27c15fa49816a2d28323a242eff
6 changes: 5 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ stages:
- script: python runtests.py -g --refguide-check
displayName: 'Run Refguide Check'
condition: eq(variables['USE_OPENBLAS'], '1')
- script: python runtests.py -n --mode=full -- -rsx --junitxml=junit/test-results.xml
- script: |
echo LIBRARY_PATH ${LIBRARY_PATH}
echo ls LIBRARY_PATH
ls ${LIBRARY_PATH}
python runtests.py -n --mode=full -- -rsx --junitxml=junit/test-results.xml
displayName: 'Run Full NumPy Test Suite'
condition: eq(variables['USE_OPENBLAS'], '1')
env:
Expand Down
0