Use uint64_t for RustBuffer fields to fix 32-bit ARM crash #435
Workflow file for this run
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: Compat / iOS | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 1" # Once a week at midnight on Monday | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| compat: | |
| strategy: | |
| matrix: | |
| bob-version: | |
| - 0.49.10 | |
| rn-version: | |
| - 0.77.2 | |
| - 0.78.2 | |
| # Uncomment to debug failures | |
| # fail-fast: false | |
| runs-on: macos-latest | |
| name: "bob ${{ matrix.bob-version }} / rn ${{ matrix.rn-version }} / ios" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/test-turbo-modules | |
| with: | |
| platform: ios | |
| bobVersion: ${{ matrix.bob-version }} | |
| rnVersion: ${{ matrix.rn-version }} |