Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Refactor cpp and rust(rapier) code #1

Refactor cpp and rust(rapier) code

Refactor cpp and rust(rapier) code #1

Workflow file for this run

name: 🍏 iOS Builds
on:
workflow_call:
# Global Settings
env:
SCONSFLAGS: verbose=yes warnings=extra werror=yes
jobs:
ios:
runs-on: "macos-latest"
name: iOS Build ${{ matrix.target }} ${{ matrix.arch }}
strategy:
fail-fast: false
matrix:

Check failure on line 15 in .github/workflows/ios_builds.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ios_builds.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
target: [template_debug, template_release]
arch: [arm64]
precision: [single, double]
features: [simd-stable], simd-nightly, parallel, enhanced-determinism]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Build ${{ matrix.target }} ${{ matrix.arch }} ${{ matrix.precision }} ${{ matrix.features }}
uses: ./.github/actions/build
with:
sconsflags: ${{ env.SCONSFLAGS }}
arch: ${{ matrix.arch }}
platform: ios
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}
- name: Upload ${{ matrix.target }} ${{ matrix.arch }} ${{ matrix.precision }} ${{ matrix.features }}
uses: ./.github/actions/upload
with:
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}