MacOS static GUI binary #67
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MacOS static GUI binary | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| schedule: | |
| - cron: '0 6 * * 4' | |
| jobs: | |
| macos-13: | |
| runs-on: macos-14 | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| brew install automake autoconf | |
| curl -L -O https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.8/wxWidgets-3.2.8.tar.bz2 | |
| tar xjf wxWidgets-3.2.8.tar.bz2 | |
| cd wxWidgets-3.2.8 | |
| mkdir build-release | |
| cd build-release | |
| ../configure --disable-shared --disable-sys-libs | |
| make -j4 | |
| sudo make install | |
| - run: aclocal | |
| - run: automake --add-missing | |
| - run: autoconf | |
| - run: ./configure | |
| - run: make | |
| - run: sudo make install | |
| - run: make osx-dmg | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: artifact-osx-14 | |
| path: "*.dmg" |