Improve lcd handling for ETC #203
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: Build OSX binaries | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| osx: | |
| runs-on: macos-14 | |
| steps: | |
| - run: python3 -m pip config set global.break-system-packages true | |
| - run: brew install zmq sdl2 libelf | |
| - run: pip3 install meson | |
| - run: pip3 install ninja | |
| - uses: actions/checkout@v4 | |
| - run: meson setup ./build | |
| - run: ninja -C ./build | |
| - run: meson install -C ./build --destdir ./install | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: orbuculum-osx | |
| path: build/install/**/* | |
| if-no-files-found: error | |