[opt] Add struct-packing pass and unit test. #27
This file contains 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: iOS | |
permissions: | |
contents: read | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ macos-12, macos-13 ] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: lukka/get-cmake@a70f1cfa1857a3eecfe0d34962269e1b1e8be56c # v3.30.2 | |
- name: Download dependencies | |
run: python3 utils/git-sync-deps | |
# NOTE: The MacOS SDK ships universal binaries. CI should reflect this. | |
- name: Configure Universal Binary for iOS | |
run: | | |
cmake -S . -B build \ | |
-D CMAKE_BUILD_TYPE=Debug \ | |
-D CMAKE_SYSTEM_NAME=iOS \ | |
"-D CMAKE_OSX_ARCHITECTURES=arm64;x86_64" \ | |
-G Ninja | |
env: | |
# Linker warnings as errors | |
LDFLAGS: -Wl,-fatal_warnings | |
- run: cmake --build build | |
- run: cmake --install build --prefix /tmp |