From 49d0576cdac18f7eb49889571629e7d518e8d08f Mon Sep 17 00:00:00 2001 From: calebkuitenbrouwer <33358507+calebkuitenbrouwer@users.noreply.github.com> Date: Tue, 19 May 2026 17:30:52 -0700 Subject: [PATCH] Add iOS GitHub Actions workflow --- .github/workflows/run_ios.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/run_ios.yml diff --git a/.github/workflows/run_ios.yml b/.github/workflows/run_ios.yml new file mode 100644 index 000000000..09020acbd --- /dev/null +++ b/.github/workflows/run_ios.yml @@ -0,0 +1,23 @@ +name: Run iOS + +on: [push, pull_request] + +jobs: + RunIOS: + runs-on: macos-latest + + steps: + - name: Clone Repository + uses: actions/checkout@v4 + + - name: Configure (iOS Simulator arm64) + run: | + cmake -B build \ + -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/ios.toolchain.cmake \ + -DPLATFORM=SIMULATORARM64 \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTS=OFF \ + -DBRAINFLOW_COPY_TO_PACKAGE_DIRS=OFF + + - name: Build + run: cmake --build build --config Release