Update LiteCore to c0fbdaa #1678
Workflow file for this run
This file contains hidden or 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: | | |
| sudo xcode-select -s "/Applications/Xcode_16.4.app" | |
| 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}" |