Skip to content

Commit

Permalink
chore(build): use a free runner to build MacOS ARM binaries (questdb#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrinot authored Feb 13, 2024
1 parent 041df8c commit ae7b148
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rebuild_native_libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
build-macos:
strategy:
matrix:
# macos-13-xlarge = ARM M1
# macos-14 = ARM M1
# macos-latest = x64
# if you change OS definitions then you need to change conditions in cache-save steps below
os: [ macos-13-xlarge, macos-latest ]
os: [ macos-14, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -64,7 +64,7 @@ jobs:
cmake --build build/release --config Release
cd ..
- name: Save ARM MacOS binary to Cache
if: ${{ matrix.os == 'macos-13-xlarge' }}
if: ${{ matrix.os == 'macos-14' }}
uses: actions/cache/save@v3
with:
path: |
Expand Down

0 comments on commit ae7b148

Please sign in to comment.