Skip to content

Commit

Permalink
Update MacOS to arm64 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 authored Jul 17, 2024
1 parent 0ab4d58 commit 94e3342
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'main'

env:
BUILDER_VERSION: v0.9.61
BUILDER_VERSION: v0.9.62
BUILDER_SOURCE: releases
BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net
PACKAGE_NAME: aws-c-s3
Expand Down Expand Up @@ -133,8 +133,21 @@ jobs:
run: |
python .\aws-c-s3\build\deps\aws-c-common\scripts\appverifier_ctest.py --build_directory .\aws-c-s3\build\aws-c-s3
osx:
runs-on: macos-13 # latest
macos:
runs-on: macos-14 # latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
chmod a+x builder
./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DASSERT_LOCK_HELD=ON
macos-x64:
runs-on: macos-14-large # latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
Expand Down

0 comments on commit 94e3342

Please sign in to comment.