Skip to content

Commit f4de414

Browse files
committed
ci: fix macos workflow
The macOS-12 environment is deprecated, consider switching to macOS-13, macOS-14 (macos-latest) or macOS-15.
1 parent 5fe4fb2 commit f4de414

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .github/workflows/macosx.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
macosx_build:
13-
runs-on: macos-12
13+
runs-on: macos-latest
1414

1515
steps:
1616
- name: Get nEMU sources
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build nEMU
2525
run: |
2626
mkdir build && cd build
27-
cmake ../ -DOPENSSL_ROOT_DIR=`find /usr/local/Cellar -name 'opensslv.h' | sed 's|/openssl/[^/]*$||'` \
28-
-DLibArchive_INCLUDE_DIR=`find /usr/local/Cellar -name 'archive_entry.h' | sed 's|/[^/]*$||'` \
27+
cmake ../ -DOPENSSL_ROOT_DIR=`find /opt/homebrew/Cellar -name 'opensslv.h' | sed 's|/openssl/[^/]*$||'` \
28+
-DLibArchive_INCLUDE_DIR=`find /opt/homebrew/Cellar -name 'archive_entry.h' | sed 's|/[^/]*$||'` \
2929
-DNM_WITH_NCURSES=ON
3030
cmake --build .

0 commit comments

Comments
 (0)