Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:macos13 #2937

Merged
merged 16 commits into from
Nov 1, 2024
11 changes: 4 additions & 7 deletions .github/workflows/pika.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:

- name: Cleanup
run: |
cp deps/lib/libz.1.dylib .
rm -rf ./deps
rm -rf ./buildtrees

Expand Down Expand Up @@ -156,7 +157,7 @@ jobs:
sh integrate_test.sh

build_on_macos:
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand All @@ -169,13 +170,14 @@ jobs:
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2.13
with:
key: macos-12
key: macos-13

- name: Install Deps
run: |
brew update
brew install --overwrite python@3.12 autoconf protobuf llvm wget git
brew install gcc@10 automake cmake make binutils
brew install zlib

- name: Configure CMake
run: |
Expand All @@ -186,11 +188,6 @@ jobs:
run: |
cmake --build build --config ${{ env.BUILD_TYPE }}

- name: Cleanup
run: |
rm -rf ./deps
rm -rf ./buildtrees

- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest -C ${{ env.BUILD_TYPE }} --verbose
Expand Down
Loading