forked from fern-api/fern
-
Notifications
You must be signed in to change notification settings - Fork 0
375 lines (312 loc) · 11.7 KB
/
ci.yml
File metadata and controls
375 lines (312 loc) · 11.7 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
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
inputs:
update_snapshots:
description: 'Automatically update test snapshots if they fail (applies to both regular tests and ETE tests)'
required: false
default: false
type: boolean
# Cancel previous workflows on previous push
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:
DO_NOT_TRACK: "1"
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: "buildwithfern"
TURBO_NO_UPDATE_NOTIFIER: "1"
TURBO_DAEMON: "false"
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Compile
run: pnpm compile
boundaries:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Check turbo boundaries
run: pnpm boundaries
depcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Check dependencies
run: pnpm depcheck
validate-cli-dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Validate CLI dependencies
run: node scripts/validate-cli-dependencies.js
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Lint
run: pnpm lint:style
- name: Generate JSON Schema
run: |
pnpm fern:build
pnpm jsonschema
- name: Format
run: pnpm format:check
- name: Ensure no changes to git-tracked files
run: git --no-pager diff --exit-code
biome:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: check:biome
run: pnpm check:biome
test:
if: github.repository == 'fern-api/fern'
runs-on: Test
timeout-minutes: 25
steps:
- name: Checkout repo
uses: actions/checkout@v6
with:
lfs: true
- name: Install
uses: ./.github/actions/install
- name: Cache Fern bin dependencies
uses: actions/cache@v5
with:
path: ~/.fern/bin
key: ${{ runner.os }}-fern-bin-${{ hashFiles('packages/cli/workspace/lazy-fern-workspace/src/protobuf/BufDownloader.ts', 'packages/cli/workspace/lazy-fern-workspace/src/protobuf/ProtocGenOpenAPIDownloader.ts') }}
restore-keys: |
${{ runner.os }}-fern-bin-
- name: Build CLI for install-dependencies
run: pnpm turbo run dist:cli:dev --filter=@fern-api/cli
- name: Install protobuf dependencies (buf + protoc-gen-openapi)
run: |
FERN_NO_VERSION_REDIRECTION=true node packages/cli/cli/dist/dev/cli.cjs install-dependencies
echo "$HOME/.fern/bin" >> $GITHUB_PATH
- name: Stop any stale turbo daemon
run: pnpm turbo daemon stop || true
- name: Run tests
if: ${{ !github.event.inputs.update_snapshots }}
timeout-minutes: 20
run: ./scripts/turbo-retry.sh pnpm test
- name: Run tests with snapshot updates
if: ${{ github.event.inputs.update_snapshots == 'true' }}
timeout-minutes: 20
run: ./scripts/turbo-retry.sh pnpm test:update
- name: Commit and push updated snapshots
if: ${{ github.event.inputs.update_snapshots == 'true' }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
if ! git diff --staged --quiet; then
git commit -m "chore: update test snapshots"
git push
else
echo "No snapshot changes to commit"
fi
- name: Ensure no changes to git-tracked files
if: ${{ !github.event.inputs.update_snapshots }}
run: git --no-pager diff --exit-code
test-ete:
if: github.repository == 'fern-api/fern'
runs-on: Test
timeout-minutes: 25
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Log in to Docker Hub
if: ${{ env.DOCKERHUB_USERNAME != '' }}
uses: docker/login-action@v4
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME_PUBLIC_READONLY }}
with:
username: ${{ secrets.DOCKER_USERNAME_PUBLIC_READONLY }}
password: ${{ secrets.DOCKER_PASSWORD_PUBLIC_READONLY }}
- name: Clear stale Docker image cache
run: rm -rf /tmp/docker-cache
- name: Cache Docker images
id: docker-cache
uses: actions/cache@v5
with:
path: /tmp/docker-cache
key: ${{ runner.os }}-docker-ete-${{ hashFiles('**/Dockerfile*') }}
restore-keys: |
${{ runner.os }}-docker-ete-
- name: Load cached Docker images
run: |
for f in /tmp/docker-cache/*.tar; do
[ -f "$f" ] && docker load -i "$f" || true
done
- name: Record pre-existing Docker images
run: docker images -q | sort -u > /tmp/docker-images-before.txt
- name: Cache Fern bin dependencies
uses: actions/cache@v5
with:
path: ~/.fern/bin
key: ${{ runner.os }}-fern-bin-${{ hashFiles('packages/cli/workspace/lazy-fern-workspace/src/protobuf/BufDownloader.ts', 'packages/cli/workspace/lazy-fern-workspace/src/protobuf/ProtocGenOpenAPIDownloader.ts') }}
restore-keys: |
${{ runner.os }}-fern-bin-
- name: Build CLI for install-dependencies
run: pnpm turbo run dist:cli:dev --filter=@fern-api/cli
- name: Install protobuf dependencies (buf + protoc-gen-openapi)
run: |
FERN_NO_VERSION_REDIRECTION=true node packages/cli/cli/dist/dev/cli.cjs install-dependencies
echo "$HOME/.fern/bin" >> $GITHUB_PATH
- name: Stop any stale turbo daemon
run: pnpm turbo daemon stop || true
- name: Build CLIs (dev + seed)
timeout-minutes: 10
run: |
./scripts/turbo-retry.sh pnpm turbo run dist:cli:dev dist:cli --filter=@fern-api/cli --filter=@fern-api/cli-v2 --filter=@fern-api/seed-cli
- name: Pre-pull Docker images used by ETE tests
run: docker compose -f packages/cli/ete-tests/docker-compose.yml pull
- name: Run ETE tests
if: ${{ !github.event.inputs.update_snapshots }}
timeout-minutes: 20
env:
FERN_ORG_TOKEN_DEV: ${{ secrets.FERN_ORG_TOKEN_DEV }}
run: |
FERN_TOKEN=${{ secrets.FERN_ORG_TOKEN_DEV }} pnpm --filter @fern-api/ete-tests test
- name: Run ETE tests with snapshot updates
if: ${{ github.event.inputs.update_snapshots == 'true' }}
timeout-minutes: 20
env:
FERN_ORG_TOKEN_DEV: ${{ secrets.FERN_ORG_TOKEN_DEV }}
run: |
FERN_TOKEN=${{ secrets.FERN_ORG_TOKEN_DEV }} pnpm --filter @fern-api/ete-tests test -- -u
- name: Commit and push updated snapshots
if: ${{ github.event.inputs.update_snapshots == 'true' }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
if ! git diff --staged --quiet; then
git commit -m "chore: update ETE test snapshots"
git push
else
echo "No snapshot changes to commit"
fi
- name: Save Docker images for cache
if: always()
run: |
if [ ! -f /tmp/docker-images-before.txt ]; then
echo "Skipping cache save: docker-images-before.txt not found"
exit 0
fi
mkdir -p /tmp/docker-cache
comm -13 /tmp/docker-images-before.txt <(docker images -q | sort -u) | while read -r id; do
img=$(docker inspect --format '{{index .RepoTags 0}}' "$id" 2>/dev/null || true)
[ -z "$img" ] && continue
fname=$(echo "$img" | tr '/:' '_')
docker save "$img" -o "/tmp/docker-cache/${fname}.tar" 2>/dev/null || true
done
- name: Ensure no changes to git-tracked files
if: ${{ !github.event.inputs.update_snapshots }}
run: git --no-pager diff --exit-code
live-test-dev:
environment: Fern Dev
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'fern-api/fern' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Check API definition is valid
env:
FORCE_COLOR: "2"
FERN_ORG_TOKEN_DEV: ${{ secrets.FERN_ORG_TOKEN_DEV }}
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
AUTH0_CLIENT_ID: ${{ secrets.AUTH0_CLIENT_ID }}
run: |
pnpm turbo run dist:cli:dev --filter @fern-api/cli
cli_path="$(pwd)/packages/cli/cli/dist/dev/cli.cjs"
./scripts/live-test.sh "$cli_path" "$FERN_ORG_TOKEN_DEV"
generate-docs-test-windows:
environment: Fern Dev
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'fern-api/fern' }}
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "20.x"
- name: Assert docs are generated
env:
FORCE_COLOR: "2"
FERN_TOKEN: ${{ secrets.FERN_ORG_TOKEN_DEV }}
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
AUTH0_CLIENT_ID: ${{ secrets.AUTH0_CLIENT_ID }}
run: |
pnpm turbo run dist:cli:dev --filter @fern-api/cli
$cliPath = Join-Path $env:GITHUB_WORKSPACE "packages\cli\cli\dist\dev\cli.cjs"
if (-not (Test-Path $cliPath)) {
Write-Error "CLI path does not exist: $cliPath"
exit 1
}
cd windows
node $cliPath generate --docs --log-level trace
if ($LASTEXITCODE -ne 0) {
Write-Error "Command failed with exit code $LASTEXITCODE"
exit $LASTEXITCODE
}
live-test-dev-windows:
environment: Fern Dev
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'fern-api/fern' }}
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install
uses: ./.github/actions/install
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "20.x"
- name: Check API definition is valid
env:
FORCE_COLOR: "2"
FERN_ORG_TOKEN_DEV: ${{ secrets.FERN_ORG_TOKEN_DEV }}
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
AUTH0_CLIENT_ID: ${{ secrets.AUTH0_CLIENT_ID }}
run: |
pnpm turbo run dist:cli:dev --filter @fern-api/cli
$cliPath = Join-Path $env:GITHUB_WORKSPACE "packages\cli\cli\dist\dev\cli.cjs"
if (-not (Test-Path $cliPath)) {
Write-Error "CLI path does not exist: $cliPath"
exit 1
}
$scriptPath = Join-Path $env:GITHUB_WORKSPACE "scripts\live-test.ps1"
& $scriptPath -cli_path $cliPath -token $env:FERN_ORG_TOKEN_DEV