Skip to content

Commit 01c119e

Browse files
committed
Use 3.2.8.1 for it must have fp.h problem fixed
1 parent cd8796a commit 01c119e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/scripts/build-macos-wxwidgets.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ set -e
2525
export MAKEFLAGS=-j$(getconf _NPROCESSORS_ONLN)
2626

2727
if [ -z "$WXWIDGETS_VERSION" ]; then
28-
WXWIDGETS_VERSION=3.1.5
28+
# Value is overridden in .github/workflows/main.yaml for MacOS only, so if version change didn't work, here's why
29+
WXWIDGETS_VERSION=3.2.8.1
2930
fi
3031

3132
vsn=$WXWIDGETS_VERSION
32-
curl --fail -LO https://github.com/wxWidgets/wxWidgets/releases/download/v$vsn/wxWidgets-$vsn.tar.bz2
33+
download_url=https://github.com/wxWidgets/wxWidgets/releases/download/v$vsn/wxWidgets-$vsn.tar.bz2
34+
echo "Downloading WxWidgets from ${download_url}"
35+
curl --fail -LO $download_url
3336
tar -xf wxWidgets-$vsn.tar.bz2
3437
mv wxWidgets-$vsn/ wxWidgets
3538

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
needs: pack
195195
if: needs.pack.outputs.build-c-code == 'true'
196196
env:
197-
WXWIDGETS_VERSION: 3.2.6
197+
WXWIDGETS_VERSION: 3.2.8.1
198198
MACOS_VERSION: 15
199199
steps:
200200
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected]

0 commit comments

Comments
 (0)