Skip to content

Commit 2bee6d7

Browse files
coolsoftwaretylerdominicstop
authored andcommitted
chore: update build example workflow for other scenarios
1 parent 4dfc8cb commit 2bee6d7

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

.github/workflows/build-example-ios.yml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,38 @@ jobs:
7575
- name: Build JS
7676
run: yarn run bob build
7777

78-
- name: 1/2 - Run `pod-install` (fabric, static library)
78+
- name: 1/4 - Run `pod-install` (fabric, static library)
7979
run: yarn pod-install:new-static
8080

81-
- name: 1/2 - Build example (fabric, static library)
81+
- name: 1/4 - Build example (fabric, static library)
8282
run: yarn run build:ios
8383

8484
- name: Clear/reset example pods
8585
run: yarn run nuke:example-pods
8686

87-
- name: 2/2 - Run `pod-install` (paper, static library)
87+
- name: 2/4 - Run `pod-install` (paper, static library)
8888
run: yarn pod-install:old-static
8989

90-
- name: 2/2 - Build example (paper, static library)
91-
run: yarn run build:ios
90+
- name: 2/4 - Build example (paper, static library)
91+
run: yarn run build:ios
92+
93+
- name: Clear/reset example pods
94+
run: yarn run nuke:example-pods
95+
96+
- name: 3/4 - Run `pod-install` (fabric, dynamic library)
97+
run: yarn pod-install:new-dynamic
98+
99+
- name: 3/4 - Build example (fabric, dynamic library)
100+
run: yarn run build:ios
101+
102+
- name: Clear/reset example pods
103+
run: yarn run nuke:example-pods
104+
105+
- name: 4/4 - Run `pod-install` (paper, dynamic library)
106+
run: yarn pod-install:old-dynamic
107+
108+
- name: 4/4 - Build example (paper, dynamic library)
109+
run: yarn run build:ios
110+
111+
- name: Clear/reset example pods
112+
run: yarn run nuke:example-pods

0 commit comments

Comments
 (0)