From f4de414b6fdeac3942ee9388e2097c6b302a9052 Mon Sep 17 00:00:00 2001 From: Pavel Balaev Date: Sat, 11 Jan 2025 18:30:41 +0300 Subject: [PATCH] ci: fix macos workflow The macOS-12 environment is deprecated, consider switching to macOS-13, macOS-14 (macos-latest) or macOS-15. --- .github/workflows/macosx.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macosx.yml b/.github/workflows/macosx.yml index f4d55cc7..7d4f9210 100644 --- a/.github/workflows/macosx.yml +++ b/.github/workflows/macosx.yml @@ -10,7 +10,7 @@ on: jobs: macosx_build: - runs-on: macos-12 + runs-on: macos-latest steps: - name: Get nEMU sources @@ -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 .