forked from tuist/tuist
-
Notifications
You must be signed in to change notification settings - Fork 0
422 lines (409 loc) · 15.5 KB
/
cli.yml
File metadata and controls
422 lines (409 loc) · 15.5 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
name: CLI
on:
push:
branches:
- main
paths:
- "cli/TuistCacheEE"
- "cli/TuistCacheEE/**"
- "cli/Sources/**"
- "cli/Tests/**"
- "cli/Templates/**"
- "*.swift"
- ".github/workflows/cli.yml"
- "mise/tasks/cli/lint.sh"
- "mise/tasks/cli/ee.sh"
- "mise.toml"
- "mise.lock"
- "examples/xcode/**"
- "Tuist/**"
- ".xcode-version"
- ".swiftpm/**"
- "Package.swift"
- "Package.resolved"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "cli/TuistCacheEE"
- "cli/TuistCacheEE/**"
- "cli/Sources/**"
- "cli/Tests/**"
- "cli/Templates/**"
- "*.swift"
- ".github/workflows/cli.yml"
- "mise/tasks/cli/lint.sh"
- "mise/tasks/cli/ee.sh"
- "mise.toml"
- "mise.lock"
- "examples/xcode/**"
- "Tuist/**"
- ".xcode-version"
- ".swiftpm/**"
- "Package.swift"
- "Package.resolved"
permissions:
id-token: write
contents: read
env:
MISE_VERSION: "2026.4.18"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MISE_GITHUB_TOKEN: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
TUIST_GITHUB_TOKEN: ${{ secrets.TUIST_CLI_GITHUB_TOKEN }}
TUIST_EE: ${{ github.event.pull_request.head.repo.fork != true && '1' || '' }}
TUIST_ENABLE_CACHING: ${{ github.event.pull_request.head.repo.fork != true }}
MISE_GITHUB_ATTESTATIONS: 0
MISE_LOCKED: 1
concurrency:
group: cli-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
cli-lint:
name: Lint
runs-on: macos-26
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
- name: Initialize TuistCacheEE submodule
if: github.event.pull_request.head.repo.fork != true
run: bash mise/tasks/cli/ee.sh
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist swiftlint swiftformat"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Lint
run: |
mise x swiftformat -- swiftformat cli/ app/ --lint
mise x swiftlint -- swiftlint lint --quiet --config .swiftlint.yml cli/Sources
tuist inspect dependencies --only implicit
cli-spm-build:
name: SwiftPM Build
runs-on: macos-26
timeout-minutes: 30
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Build
run: swift build --configuration debug --replace-scm-with-registry --force-resolved-versions
cli-cache:
name: Cache
runs-on: macos-26
timeout-minutes: 60
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
- name: Initialize TuistCacheEE submodule
if: github.event.pull_request.head.repo.fork != true
run: bash mise/tasks/cli/ee.sh
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- name: Restore cache
id: cache-restore
uses: actions/cache/restore@v4
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache-restore.outputs.cache-matched-key == ''
run: tuist install
- name: Cache
run: tuist cache
- name: Save cache
id: cache-save
uses: actions/cache/save@v4
with:
path: .build
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
cli-unit-tests:
name: Unit Tests
runs-on: namespace-profile-default-macos
timeout-minutes: 30
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
- name: Initialize TuistCacheEE submodule
if: github.event.pull_request.head.repo.fork != true
run: bash mise/tasks/cli/ee.sh
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: namespacelabs/nscloud-cache-action@v1
with:
cache: mise
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Run tests
run: tuist test TuistUnitTests -- -retry-tests-on-failure -test-iterations 4
cli-acceptance-tests-build:
name: Build Acceptance Tests
runs-on: namespace-profile-default-macos
timeout-minutes: 60
if: (github.event.pull_request.draft == false || github.event_name != 'pull_request') && github.event.pull_request.head.repo.fork != true
outputs:
matrix: ${{ steps.shard.outputs.matrix }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
- name: Initialize TuistCacheEE submodule
if: github.event.pull_request.head.repo.fork != true
run: bash mise/tasks/cli/ee.sh
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: namespacelabs/nscloud-cache-action@v1
with:
cache: mise
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Skip Xcode Macro Fingerprint Validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Skip Xcode Package Validation
run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidation -bool YES
- name: Download Metal Toolchain
run: xcodebuild -downloadComponent MetalToolchain
- name: Build tests
id: shard
run: tuist test --build-only --shard-total 2 --shard-granularity suite TuistAcceptanceTests
cli-acceptance-tests:
name: Acceptance Tests
runs-on: namespace-profile-default-macos
timeout-minutes: 60
needs: cli-acceptance-tests-build
if: toJSON(fromJSON(needs.cli-acceptance-tests-build.outputs.matrix).shard) != '[]'
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.cli-acceptance-tests-build.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.TUIST_CLI_GITHUB_TOKEN || github.token }}
- name: Initialize TuistCacheEE submodule
if: github.event.pull_request.head.repo.fork != true
run: bash mise/tasks/cli/ee.sh
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: namespacelabs/nscloud-cache-action@v1
with:
cache: mise
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Authenticate with Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist auth login
- name: Setup Tuist
if: github.event.pull_request.head.repo.fork != true
run: tuist setup
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Skip Xcode Macro Fingerprint Validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Skip Xcode Package Validation
run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidation -bool YES
- name: Set up new keychain
run: |
TMP_DIRECTORY=$(mktemp -d)
KEYCHAIN_PATH=$TMP_DIRECTORY/keychain.keychain
KEYCHAIN_PASSWORD=$(uuidgen)
security create-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security default-keychain -s $KEYCHAIN_PATH
security unlock-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_PATH
- name: Run shard ${{ matrix.shard }}
run: tuist test --without-building --platform macOS TuistAcceptanceTests -- -retry-tests-on-failure -test-iterations 2
env:
TUIST_SHARD_INDEX: ${{ matrix.shard }}
cli-acceptance-tests-fork:
name: Acceptance Tests (Fork)
runs-on: macos-26
timeout-minutes: 60
if: (github.event.pull_request.draft == false || github.event_name != 'pull_request') && github.event.pull_request.head.repo.fork == true
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app
- uses: actions/cache/restore@v4
id: cache
with:
path: .build
key: ${{ runner.os }}-cli-${{ hashFiles('.xcode-version') }}-${{ hashFiles('Package.resolved') }}
- uses: jdx/mise-action@v4.0.1
with:
version: ${{ env.MISE_VERSION }}
install_args: "tuist"
cache: "false"
github_token: ${{ env.MISE_GITHUB_TOKEN }}
- name: Install Tuist dependencies
if: steps.cache.outputs.cache-matched-key == ''
run: tuist install
- name: Skip Xcode Macro Fingerprint Validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Skip Xcode Package Validation
run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidation -bool YES
- name: Download Metal Toolchain
run: xcodebuild -downloadComponent MetalToolchain
- name: Set up new keychain
run: |
TMP_DIRECTORY=$(mktemp -d)
KEYCHAIN_PATH=$TMP_DIRECTORY/keychain.keychain
KEYCHAIN_PASSWORD=$(uuidgen)
security create-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security default-keychain -s $KEYCHAIN_PATH
security unlock-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_PATH
- name: Run tests
run: tuist test --platform macOS TuistAcceptanceTests -- -retry-tests-on-failure -test-iterations 2
cli-linux-build:
name: Linux Build
runs-on: ubuntu-latest
container:
image: swift:6.2
timeout-minutes: 30
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- name: Restore cache
id: cache-restore
uses: actions/cache/restore@v4
with:
path: .build
key: linux-cli-${{ hashFiles('Package.resolved') }}
- name: Resolve dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: swift package resolve --replace-scm-with-registry
- name: Build tuist CLI
run: swift build --target tuist --replace-scm-with-registry --force-resolved-versions
- name: Save cache
if: github.ref == 'refs/heads/main'
id: cache-save
uses: actions/cache/save@v4
with:
path: .build
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
cli-linux-unit-tests:
name: Linux Unit Tests
runs-on: ubuntu-latest
container:
image: swift:6.2
timeout-minutes: 30
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- name: Restore cache
id: cache-restore
uses: actions/cache/restore@v4
with:
path: .build
key: linux-cli-${{ hashFiles('Package.resolved') }}
- name: Resolve dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: swift package resolve --replace-scm-with-registry
- name: Run unit tests
run: swift test --replace-scm-with-registry
- name: Save cache
if: github.ref == 'refs/heads/main'
id: cache-save
uses: actions/cache/save@v4
with:
path: .build
key: ${{ steps.cache-restore.outputs.cache-primary-key }}