Skip to content

Commit

Permalink
feat: target to thing
Browse files Browse the repository at this point in the history
  • Loading branch information
arifBurakDemiray committed Sep 25, 2024
1 parent 2e453e9 commit ecb4ac8
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,24 @@ on:
- staging
jobs:
build:
runs-on: macos-12
runs-on: macos-latest
strategy:
matrix:
sdk: [macosx14.5, iphoneos17.5, appletvos17.5, watchos10.5]
target: [macosx10.14, iphoneos10.0, appletvos10.0, watchos4.0]
include:
- sdk: macosx14.5
target: macosx10.14
- sdk: iphoneos17.5
target: iphoneos10.0
- sdk: appletvos17.5
target: appletvos10.0
- sdk: watchos10.5
target: watchos4.0
steps:
# To check the github context
- name: Show SDK list
run: xcodebuild -showsdks
- name: Checkout SDK code
uses: actions/checkout@v4

- name: Build for ${{ matrix.sdk }} target ${{ matrix.target }}
run: xcodebuild -project Countly.xcodeproj build -sdk ${{ matrix.sdk }} -target ${{ matrix.target }}

0 comments on commit ecb4ac8

Please sign in to comment.