We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe4fb2 commit f4de414Copy full SHA for f4de414
.github/workflows/macosx.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
macosx_build:
13
- runs-on: macos-12
+ runs-on: macos-latest
14
15
steps:
16
- name: Get nEMU sources
@@ -24,7 +24,7 @@ jobs:
24
- name: Build nEMU
25
run: |
26
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|/[^/]*$||'` \
+ cmake ../ -DOPENSSL_ROOT_DIR=`find /opt/homebrew/Cellar -name 'opensslv.h' | sed 's|/openssl/[^/]*$||'` \
+ -DLibArchive_INCLUDE_DIR=`find /opt/homebrew/Cellar -name 'archive_entry.h' | sed 's|/[^/]*$||'` \
29
-DNM_WITH_NCURSES=ON
30
cmake --build .
0 commit comments