forked from forcedotcom/SalesforceMobileSDK-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 1.01 KB
/
Copy pathnightly.yaml
File metadata and controls
35 lines (33 loc) · 1.01 KB
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
29
30
31
32
33
34
35
name: Nightly Tests
on:
schedule:
- cron: "0 5 * * 3,5" # cron is UTC, this translates to 10 PM PST Tues and Thur.
# This lets us trigger the workflow from a browser.
workflow_dispatch:
jobs:
ios-nightly:
strategy:
fail-fast: false
matrix:
lib: [SalesforceSDKCommon, SalesforceAnalytics, SalesforceSDKCore, SmartStore, MobileSync]
macos: [macos-15]
ios: [^26, ^18, ^17]
xcode: [^26, ^16, ^15]
# Valid combinations that will run:
# - iOS ^26 + Xcode ^26
# - iOS ^18 + Xcode ^26
# - iOS ^18 + Xcode ^16
# - iOS ^17 + Xcode ^15
exclude:
- { ios: ^26, xcode: ^16 }
- { ios: ^26, xcode: ^15 }
- { ios: ^18, xcode: ^15 }
- { ios: ^17, xcode: ^26 }
- { ios: ^17, xcode: ^16 }
uses: ./.github/workflows/reusable-workflow.yaml
with:
lib: ${{ matrix.lib }}
ios: ${{ matrix.ios }}
xcode: ${{ matrix.xcode }}
macos: ${{ matrix.macos }}
secrets: inherit