-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (87 loc) · 2.66 KB
/
ci.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: CI
on:
push:
branches:
- '**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-oversize-kit:
name: Build OversizeKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeKit
secrets: inherit
build-calendar-kit:
name: Build CalendarKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeCalendarKit
secrets: inherit
build-contacts-kit:
name: Build OversizeContactsKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeContactsKit
secrets: inherit
build-location-kit:
name: Build LocationKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeLocationKit
secrets: inherit
build-notice-kit:
name: Build NoticeKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeNoticeKit
secrets: inherit
build-notification-kit:
name: Build NotificationKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeNotificationKit
secrets: inherit
build-onboarding-kit:
name: Build OnboardingKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizeOnboardingKit
secrets: inherit
build-photo-kit:
name: Build PhotoKit
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm-all-platforms.yml@main
with:
package: OversizePhotoKit
secrets: inherit
build-example:
name: Build Example
needs:
- build-oversize-kit
- build-calendar-kit
- build-contacts-kit
- build-location-kit
- build-notice-kit
- build-notification-kit
- build-onboarding-kit
- build-photo-kit
uses: oversizedev/GithubWorkflows/.github/workflows/build-app.yml@main
with:
path: AppExample/Example
scheme: Example
destination: platform=iOS Simulator,name=iPhone 16,OS=18.1
secrets: inherit
# tests:
# name: Test
# needs: build-swiftpm
# uses: oversizedev/GithubWorkflows/.github/workflows/test.yml@main
# secrets: inherit
bump:
name: Bump version
needs:
- build-example
if: github.ref == 'refs/heads/main'
uses: oversizedev/GithubWorkflows/.github/workflows/bump.yml@main
secrets: inherit