Skip to content

Commit 7a014d8

Browse files
authored
Update MacOS to arm64 (#114)
1 parent d48ad5d commit 7a014d8

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88

99
env:
10-
BUILDER_VERSION: v0.9.55
10+
BUILDER_VERSION: v0.9.62
1111
BUILDER_SOURCE: releases
1212
BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net
1313
PACKAGE_NAME: aws-c-event-stream
@@ -121,8 +121,17 @@ jobs:
121121
run: |
122122
python .\aws-c-event-stream\build\deps\aws-c-common\scripts\appverifier_ctest.py --build_directory .\aws-c-event-stream\build\aws-c-event-stream
123123
124-
osx:
125-
runs-on: macos-12 # latest
124+
macos:
125+
runs-on: macos-14 # latest
126+
steps:
127+
- name: Build ${{ env.PACKAGE_NAME }} + consumers
128+
run: |
129+
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
130+
chmod a+x builder
131+
./builder build -p ${{ env.PACKAGE_NAME }}
132+
133+
macos-x64:
134+
runs-on: macos-14-large # latest
126135
steps:
127136
- name: Build ${{ env.PACKAGE_NAME }} + consumers
128137
run: |

0 commit comments

Comments
 (0)