-
Notifications
You must be signed in to change notification settings - Fork 297
41 lines (39 loc) · 1.19 KB
/
xcodebuild-ios.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: iOS
on:
push:
branches:
- 'master'
- 'release/**'
pull_request:
branches:
- 'master'
- 'release/**'
jobs:
build:
name: build-and-test
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}"
- name: "Test"
env:
SCHEME: ${{ matrix.scheme }}
run: |
DEVICE=$(cat device)
xcodebuild test-without-building -scheme "${SCHEME}" -project CouchbaseLite.xcodeproj -destination "platform=iOS Simulator,name=${DEVICE}"