-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
32 lines (28 loc) · 989 Bytes
/
.travis.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
29
30
31
32
language: swift
osx_image: xcode13.2
# Build Script
before_script: chmod +x ./.travis/build.sh
script: ./.travis/build.sh
# Update Code Coverage
after_success: bash <(curl -s https://codecov.io/bash)
# Notifications
notifications:
email: false
slack:
on_success: change
rooms:
- cellular:SnbeoVtpHMYrmikTbYz6OGdb#ios-informiert
# Build Matrix
matrix:
include:
# iOS
- env: DESTINATION="OS=15.0,name=iPhone 13 Pro Max" POD_LINT="YES"
- env: DESTINATION="OS=14.5,name=iPhone 13 Pro"
- env: DESTINATION="OS=14.0,name=iPhone 13"
# watchOS
- env: DESTINATION="OS=7.4,name=Apple Watch Series 7 - 45mm" RUN_TESTS="NO"
- env: DESTINATION="OS=8.0,name=Apple Watch Series 6 - 40mm" RUN_TESTS="NO"
# tvOS
- env: DESTINATION="OS=15.0,name=Apple TV 4K (2nd generation)"
- env: DESTINATION="OS=14.5,name=Apple TV 4K"
- env: DESTINATION="OS=14.0,name=Apple TV 4K (at 1080p)"