Fix in Flex layout interacting with float elements. #3083
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 | |
| on: [push, pull_request] | |
| jobs: | |
| MacOS: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.ref }} | |
| fetch-depth: 2 | |
| - name: Checkout submodules | |
| run: | | |
| git submodule update --init --recursive | |
| - name: Install dependencies | |
| run: | | |
| brew install wget SDL2 premake | |
| - name: Build | |
| run: | | |
| premake5 --disable-static-build --with-debug-symbols gmake | |
| make -C make/macosx/ -j$(sysctl -n hw.ncpu) -e config=release_arm64 | |
| - name: Unit Tests | |
| run: | | |
| set +e | |
| cd bin/unit_tests | |
| ./eepp-unit_tests | |
| status=$? | |
| if [ "$status" -ne 0 ]; then | |
| echo "::group::lldb crash backtrace rerun" | |
| lldb --batch \ | |
| -o "run" \ | |
| -k "thread backtrace all" \ | |
| -k "quit" \ | |
| -- ./eepp-unit_tests || true | |
| echo "::endgroup::" | |
| fi | |
| exit "$status" | |
| - name: Upload artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: macos-test-output | |
| path: bin/unit_tests/output/* |