From ab88766ceafe87b2dc1f008614cd19a98645f9b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Mon, 19 Feb 2024 10:07:10 +0100 Subject: [PATCH] Build on iOS as well --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48b92af3..121cfd24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,6 +34,9 @@ jobs: - os: macos-latest platform: darwin arch: x64 + - os: macos-latest + platform: ios + arch: x64 - os: windows-latest platform: win32 arch: x64 @@ -56,6 +59,9 @@ jobs: - run: bare-dev configure --debug --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} if: ${{ matrix.platform == 'linux' || matrix.platform == 'darwin' || matrix.platform == 'win32' }} + - run: bare-dev configure --debug --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} --simulator + if: ${{ matrix.platform == 'ios' }} + - run: bare-dev configure --debug --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} --android-ndk ${{ matrix.android.ndk }} --android-api ${{ matrix.android.api }} if: ${{ matrix.platform == 'android' }}