From 434d55b2d29e08bb832d34f1a2ef75cdf600b39e Mon Sep 17 00:00:00 2001 From: Darice Date: Thu, 16 May 2024 09:36:56 -0600 Subject: [PATCH] fix versions of wx --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9769b9b..f5f0665 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,20 +108,20 @@ jobs: - name: Install wxWidgets if: ${{ matrix.os == 'macos-14-large'}} run: | - brew install wxmac - /usr/local/Cellar/wxwidgets/3.2.5/bin/wx-config --cflags - WXMSW3=/usr/local/Cellar/wxwidgets/3.2.5 + brew install wxmac@3.2.3 + /usr/local/Cellar/wxwidgets/3.2.3/bin/wx-config --cflags + WXMSW3=/usr/local/Cellar/wxwidgets/3.2.3 echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV - echo /usr/local/Cellar/wxwidgets/3.2.5/bin >> $GITHUB_PATH + echo /usr/local/Cellar/wxwidgets/3.2.3/bin >> $GITHUB_PATH - name: Install wxWidgets if: ${{ matrix.os == 'macos-latest'}} run: | - brew install wxmac - /opt/homebrew/Cellar/wxwidgets/3.2.4/bin/wx-config --cflags - WXMSW3=/opt/homebrew/Cellar/wxwidgets/3.2.4 + brew install wxmac@3.2.3 + /opt/homebrew/Cellar/wxwidgets/3.2.3/bin/wx-config --cflags + WXMSW3=/opt/homebrew/Cellar/wxwidgets/3.2.3 echo "WXMSW3=$WXMSW3" >> $GITHUB_ENV - echo /opt/homebrew/Cellar/wxwidgets/3.2.4/bin >> $GITHUB_PATH + echo /opt/homebrew/Cellar/wxwidgets/3.2.3/bin >> $GITHUB_PATH - name: Setup cmake uses: jwlawson/actions-setup-cmake@v2