5
5
pull_request :
6
6
branches : [ master ]
7
7
env :
8
- CI_XCODE_VER : ' /Applications/Xcode_11.7.app/Contents/Developer'
9
- CI_XCODE_VER_OLDER : ' /Applications/Xcode_11.6 .app/Contents/Developer'
8
+ CI_XCODE_11 : ' /Applications/Xcode_11.7.app/Contents/Developer'
9
+ CI_XCODE_13 : ' /Applications/Xcode_13.1 .app/Contents/Developer'
10
10
11
11
jobs :
12
12
ios :
29
29
bundle install
30
30
- name : Build-Test
31
31
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:ios
32
+ env :
33
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
32
34
- name : Send codecov
33
35
run : bash <(curl https://codecov.io/bash)
36
+
34
37
35
38
macos :
36
39
runs-on : macos-latest
@@ -58,11 +61,13 @@ jobs:
58
61
security set-keychain-settings -lut 7200 temporary
59
62
- name : Build-Test
60
63
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:macos
64
+ env :
65
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
61
66
- name : Send codecov
62
67
run : bash <(curl https://codecov.io/bash)
63
68
64
69
facebook_utils :
65
- needs : macos
70
+ needs : parseui
66
71
runs-on : macos-latest
67
72
steps :
68
73
- uses : actions/checkout@v2
@@ -82,11 +87,13 @@ jobs:
82
87
bundle install
83
88
- name : Build-Test
84
89
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:facebook_utils:ios
90
+ env :
91
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
85
92
- name : Send codecov
86
93
run : bash <(curl https://codecov.io/bash)
87
94
88
95
twitter_utils :
89
- needs : macos
96
+ needs : parseui
90
97
runs-on : macos-latest
91
98
steps :
92
99
- uses : actions/checkout@v2
@@ -106,6 +113,8 @@ jobs:
106
113
bundle install
107
114
- name : Build-Test
108
115
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:twitter_utils:ios
116
+ env :
117
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
109
118
- name : Send codecov
110
119
run : bash <(curl https://codecov.io/bash)
111
120
@@ -129,6 +138,8 @@ jobs:
129
138
bundle install
130
139
- name : Build-Test
131
140
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:parseui:all
141
+ env :
142
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
132
143
- name : Send codecov
133
144
run : bash <(curl https://codecov.io/bash)
134
145
@@ -138,6 +149,8 @@ jobs:
138
149
- uses : actions/checkout@v2
139
150
- name : CocoaPods
140
151
run : set -o pipefail && env NSUnbufferedIO=YES pod lib lint --allow-warnings --verbose
152
+ env :
153
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
141
154
142
155
release :
143
156
runs-on : macos-latest
@@ -160,10 +173,10 @@ jobs:
160
173
- name : Build Release
161
174
run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake package:release
162
175
env :
163
- DEVELOPER_DIR : ${{ env.CI_XCODE_VER }}
176
+ DEVELOPER_DIR : ${{ env.CI_XCODE_11 }}
164
177
165
178
docs :
166
- needs : macos
179
+ needs : parseui
167
180
runs-on : macos-latest
168
181
steps :
169
182
- uses : actions/checkout@v2
@@ -184,3 +197,5 @@ jobs:
184
197
- name : Create Jazzy Docs
185
198
run : |
186
199
./Scripts/jazzy.sh
200
+ env :
201
+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
0 commit comments