Skip to content

Fixing issue with mesh system not properly handling submeshes #243

Fixing issue with mesh system not properly handling submeshes

Fixing issue with mesh system not properly handling submeshes #243

Workflow file for this run

name: iOS
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
toolsets: [
{host: [macOS, ARM64, self-hosted], preset: arm64-ios-ninja-llvm},
# Not doing iOS xcode builds until we can figure out signing
#{host: [macOS, ARM64, self-hosted], preset: arm64-ios-xcode-llvm},
]
name: ${{matrix.toolsets.preset}} on ${{matrix.toolsets.host[0]}}
runs-on: ${{matrix.toolsets.host}}
steps:
- uses: actions/checkout@v3
- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF
- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
- name: Build RelWithDebInfo
run: cmake --build --preset relwithdebinfo-${{matrix.toolsets.preset}}
- name: Build Release
run: cmake --build --preset release-${{matrix.toolsets.preset}}