Skip to content

Fix ArrayIndexConfiguration constructor #1149

Fix ArrayIndexConfiguration constructor

Fix ArrayIndexConfiguration constructor #1149

Workflow file for this run

name: iOS
on:
push:
branches:
- 'master'
- 'release/**'
pull_request:
branches:
- 'master'
- 'release/**'
jobs:
build:
name: build
runs-on: macOS-latest
strategy:
matrix:
scheme: ["CBL_ObjC", "CBL_Swift"]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: "Select-iOS-Simulator"
run: |
device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | sed 's/Simulator//g' | awk '{$1=$1;print}'`
echo $device | cat >device
echo "Selected the device : ${device}"
- name: "Build-for-testing"
env:
SCHEME: ${{ matrix.scheme }}
run: |
DEVICE=$(cat device)
xcodebuild build-for-testing -scheme "${SCHEME}" -project CouchbaseLite.xcodeproj -destination "platform=iOS Simulator,name=${DEVICE}"