Skip to content

Update build-ios.yml #3

Update build-ios.yml

Update build-ios.yml #3

Workflow file for this run

name: Build iOS

Check failure on line 1 in .github/workflows/build-ios.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-ios.yml

Invalid workflow file

Invalid type for `job.strategy`
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
name: Build and analyse default scheme using xcodebuild command
runs-on: macos-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=14.0,name=iPhone 12 Pro Max']
destination: ['platform=iOS Simulator,OS=15.0,name=iPhone 13 Pro Max']
destination: ['platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro Max']
destination: ['platform=macOS,name=My Mac']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Default Scheme
run: |
scheme_list=$(xcodebuild -list -json | tr -d "\n")
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
echo $default | cat >default
echo Using default scheme: $default
- name: Build
env:
scheme: ${{ 'default' }}
run: |
if [ $scheme = default ]; then scheme=$(cat default); fi
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]}