From 48817507719670e37bbb36f7e731c6529784c230 Mon Sep 17 00:00:00 2001 From: Marco Frank <47047767+MrPoloGit@users.noreply.github.com> Date: Fri, 27 Mar 2026 15:30:36 -0700 Subject: [PATCH] Change MacOS release to be ARM instead of intel x86 (#328) --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7053716..710dbb3 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,7 +19,7 @@ jobs: matrix: os: - ubuntu-24.04 - - macOS-15-intel + - macOS-15 - windows-2025 steps: - uses: actions/checkout@v4 @@ -46,7 +46,7 @@ jobs: matrix: os: - ubuntu-24.04 - - macOS-15-intel + - macOS-15 needs: build env: IVERILOG_REF: cbdaa865a10ce69d7c528cb2aa4c571641de0c62 @@ -58,7 +58,7 @@ jobs: - name: Install Dependencies (macOS) if: runner.os == 'macOS' run: | - brew install bison + brew install bison autoconf automake gperf echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH - name: Install Dependencies (Linux) if: runner.os == 'Linux'