@@ -174,17 +174,26 @@ jobs:
174
174
echo "Starting to run AppVerifier on all tests found by CTest"
175
175
python .\aws-c-common\scripts\appverifier_ctest.py --build_directory .\aws-c-common\build\aws-c-common
176
176
177
- osx :
178
- runs-on : macos-12 # latest
177
+ macos-x64 :
178
+ runs-on : macos-14-large # latest
179
179
steps :
180
180
- name : Build ${{ env.PACKAGE_NAME }} + consumers
181
181
run : |
182
182
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
183
183
chmod a+x builder
184
184
./builder build -p ${{ env.PACKAGE_NAME }}
185
185
186
- osx-no-cpu-extensions :
187
- runs-on : macos-12 # latest
186
+ macos :
187
+ runs-on : macos-14 # latest
188
+ steps :
189
+ - name : Build ${{ env.PACKAGE_NAME }} + consumers
190
+ run : |
191
+ python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
192
+ chmod a+x builder
193
+ ./builder build -p ${{ env.PACKAGE_NAME }}
194
+
195
+ macos-no-cpu-extensions :
196
+ runs-on : macos-14 # latest
188
197
steps :
189
198
- name : Build ${{ env.PACKAGE_NAME }} + consumers
190
199
run : |
@@ -255,8 +264,8 @@ jobs:
255
264
python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
256
265
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --config Debug
257
266
258
- osx -debug :
259
- runs-on : macos-12 # latest
267
+ macos -debug :
268
+ runs-on : macos-14 # latest
260
269
steps :
261
270
- name : Build ${{ env.PACKAGE_NAME }} + consumers
262
271
run : |
0 commit comments