From e4adcfd740e778c64557f1073859d86dcc03c457 Mon Sep 17 00:00:00 2001 From: Darice Date: Wed, 15 May 2024 14:56:51 -0600 Subject: [PATCH] mac runner --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de0e475..287c9d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,6 +112,7 @@ jobs: echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV - name: Install wxWidgets + if: ${{ matrix.os == 'macos-14-large'}} run: | # curl -L https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxWidgets-3.2.3.tar.bz2 -o wxWidgets-3.2.3.tar.bz2 # ls @@ -129,6 +130,14 @@ jobs: ls /usr/local/Cellar/wxwidgets/3.2.5/bin /usr/local/Cellar/wxwidgets/3.2.5/bin/wx-config --cflags + - name: Install wxWidgets + if: ${{ matrix.os == 'macos-latest'}} + run: | + brew install wxmac + ls /opt/homebrew/Cellar/wxwidgets/3.2.4 + ls /opt/homebrew/Cellar/wxwidgets/3.2.4/bin + /opt/homebrew/Cellar/wxwidgets/3.2.4/bin/wx-config --cflags + - name: Setup cmake uses: jwlawson/actions-setup-cmake@v2 with: