-
Notifications
You must be signed in to change notification settings - Fork 244
28 lines (25 loc) · 1010 Bytes
/
build.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
name: Build the SDK
permissions:
checks: write
pull-requests: write
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
build:
runs-on: macos-${{ matrix.env.os_version }}
strategy:
matrix:
env: [{os_version: 14, sdk: "macosx14.5"},{os_version: 14, sdk: "iphoneos17.5"},{os_version: 14, sdk: "appletvos17.5"},{os_version: 14, sdk: "watchos10.5"},{os_version: 12, sdk: "iphoneos16.2"},{os_version: 12, sdk: "macosx13.1"},{os_version: 12, sdk: "appletvos16.1"},{os_version: 12, sdk: "watchos9.1"},{os_version: 13, sdk: "iphoneos17.2"},{os_version: 13, sdk: "macosx14.2"},{os_version: 13, sdk: "appletvos17.2"},{os_version: 13, sdk: "watchos10.2"}]
steps:
# To check the github context
- name: Checkout SDK code
uses: actions/checkout@v4
- name: Build for ${{ matrix.env.sdk }}
run: xcodebuild -project Countly.xcodeproj build -sdk ${{ matrix.env.sdk }}