Skip to content

Commit

Permalink
ci: fix macos workflow
Browse files Browse the repository at this point in the history
The macOS-12 environment is deprecated, consider switching to macOS-13,
macOS-14 (macos-latest) or macOS-15.
  • Loading branch information
0x501D committed Jan 11, 2025
1 parent 5fe4fb2 commit f4de414
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
macosx_build:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Get nEMU sources
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Build nEMU
run: |
mkdir build && cd build
cmake ../ -DOPENSSL_ROOT_DIR=`find /usr/local/Cellar -name 'opensslv.h' | sed 's|/openssl/[^/]*$||'` \
-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|/[^/]*$||'` \
-DNM_WITH_NCURSES=ON
cmake --build .

0 comments on commit f4de414

Please sign in to comment.