CBL-4688: Jenkins PR Validation (EE) should run on both iOS and macOS #858
Workflow file for this run
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: macOS | |
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"] | |
platform: ["platform=macOS", "platform=macOS,variant=Mac Catalyst"] | |
arch: ["x86_64"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: "Build-for-testing" | |
env: | |
SCHEME: ${{ matrix.scheme }} | |
PLATFORM: ${{ matrix.platform }} | |
ARCH: ${{ matrix.arch }} | |
run: | | |
xcodebuild build-for-testing -scheme "${SCHEME}" -project CouchbaseLite.xcodeproj -destination "${PLATFORM},arch=${ARCH}" | |
- name: "Test" | |
env: | |
SCHEME: ${{ matrix.scheme }} | |
PLATFORM: ${{ matrix.platform }} | |
ARCH: ${{ matrix.arch }} | |
run: | | |
xcodebuild test-without-building -scheme "${SCHEME}" -project CouchbaseLite.xcodeproj -destination "${PLATFORM},arch=${ARCH}" |