55 pull_request :
66 branches : [ master ]
77env :
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'
1010
1111jobs :
1212 ios :
2929 bundle install
3030 - name : Build-Test
3131 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:ios
32+ env :
33+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
3234 - name : Send codecov
3335 run : bash <(curl https://codecov.io/bash)
36+
3437
3538 macos :
3639 runs-on : macos-latest
@@ -58,11 +61,13 @@ jobs:
5861 security set-keychain-settings -lut 7200 temporary
5962 - name : Build-Test
6063 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:macos
64+ env :
65+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
6166 - name : Send codecov
6267 run : bash <(curl https://codecov.io/bash)
6368
6469 facebook_utils :
65- needs : macos
70+ needs : parseui
6671 runs-on : macos-latest
6772 steps :
6873 - uses : actions/checkout@v2
@@ -82,11 +87,13 @@ jobs:
8287 bundle install
8388 - name : Build-Test
8489 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:facebook_utils:ios
90+ env :
91+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
8592 - name : Send codecov
8693 run : bash <(curl https://codecov.io/bash)
8794
8895 twitter_utils :
89- needs : macos
96+ needs : parseui
9097 runs-on : macos-latest
9198 steps :
9299 - uses : actions/checkout@v2
@@ -106,6 +113,8 @@ jobs:
106113 bundle install
107114 - name : Build-Test
108115 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:twitter_utils:ios
116+ env :
117+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
109118 - name : Send codecov
110119 run : bash <(curl https://codecov.io/bash)
111120
@@ -129,6 +138,8 @@ jobs:
129138 bundle install
130139 - name : Build-Test
131140 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:parseui:all
141+ env :
142+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
132143 - name : Send codecov
133144 run : bash <(curl https://codecov.io/bash)
134145
@@ -138,6 +149,8 @@ jobs:
138149 - uses : actions/checkout@v2
139150 - name : CocoaPods
140151 run : set -o pipefail && env NSUnbufferedIO=YES pod lib lint --allow-warnings --verbose
152+ env :
153+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
141154
142155 release :
143156 runs-on : macos-latest
@@ -160,10 +173,10 @@ jobs:
160173 - name : Build Release
161174 run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake package:release
162175 env :
163- DEVELOPER_DIR : ${{ env.CI_XCODE_VER }}
176+ DEVELOPER_DIR : ${{ env.CI_XCODE_11 }}
164177
165178 docs :
166- needs : macos
179+ needs : parseui
167180 runs-on : macos-latest
168181 steps :
169182 - uses : actions/checkout@v2
@@ -184,3 +197,5 @@ jobs:
184197 - name : Create Jazzy Docs
185198 run : |
186199 ./Scripts/jazzy.sh
200+ env :
201+ DEVELOPER_DIR : ${{ env.CI_XCODE_13 }}
0 commit comments