Update LiteCore to 3.2.1-19 (#3337) #1162
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" |