@@ -125,14 +125,7 @@ stages:
125
125
126
126
- job : macOS
127
127
pool :
128
- # NOTE: at time of writing, there is a danger
129
- # that using an invalid vmIMage string for macOS
130
- # image silently redirects to a Windows build on Azure;
131
- # for now, use the only image name officially present in
132
- # the docs even though i.e., numba uses another in their
133
- # azure config for mac os -- Microsoft has indicated
134
- # they will patch this issue
135
- vmImage : ' macOS-1015'
128
+ vmImage : ' macOS-11'
136
129
strategy :
137
130
maxParallel : 3
138
131
matrix :
@@ -226,9 +219,14 @@ stages:
226
219
- script : python runtests.py -g --refguide-check
227
220
displayName : ' Run Refguide Check'
228
221
condition : eq(variables['USE_OPENBLAS'], '1')
229
- - script : python runtests.py -n --mode=full -- -rsx --junitxml=junit/test-results.xml
222
+ - script : |
223
+ echo LIBRARY_PATH ${LIBRARY_PATH}
224
+ python runtests.py -n --mode=full -- -rsx --junitxml=junit/test-results.xml
230
225
displayName: 'Run Full NumPy Test Suite'
231
226
condition: eq(variables['USE_OPENBLAS'], '1')
227
+ env:
228
+ # gfortran installed above adds -lSystem, so this is needed to find it (gh-22043)
229
+ LIBRARY_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib
232
230
- bash : python tools/openblas_support.py --check_version
233
231
displayName : ' Verify OpenBLAS version'
234
232
condition : eq(variables['USE_OPENBLAS'], '1')
0 commit comments