File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1717 macos :
1818 runs-on : macos-latest
1919
20+ strategy :
21+ fail-fast : false
22+ matrix :
23+ wx-version : ['v3.2.8']
24+ wx-options : ['--enable-stl', '--disable-stl']
25+
2026 steps :
2127
2228 - name : Install Codelite's dependencies
@@ -37,15 +43,15 @@ jobs:
3743 uses : actions/checkout@v4
3844 with :
3945 repository : wxWidgets/wxWidgets
40- ref : v3.2.8
46+ ref : ${{ matrix.wx-version }}
4147 submodules : recursive
4248 path : wxWidgets
4349
4450 - name : Build and install wxWidgets
4551 run : |
4652 mkdir wxWidgets/build-release
4753 cd wxWidgets/build-release
48- ../configure --enable-shared --enable-monolithic --with-osx_cocoa CXX='clang++ -std=c++17 -stdlib=libc++ -I../src/tiff/libtiff' CC=clang --disable-debug --disable-mediactrl --enable-stl
54+ ../configure --enable-shared --enable-monolithic --with-osx_cocoa CXX='clang++ -std=c++17 -stdlib=libc++ -I../src/tiff/libtiff' CC=clang --disable-debug --disable-mediactrl ${{ matrix.wx-options }}
4955 make -j$(sysctl -n hw.physicalcpu)
5056 sudo make install
5157
You can’t perform that action at this time.
0 commit comments