-
Notifications
You must be signed in to change notification settings - Fork 24
260 lines (221 loc) · 7.32 KB
/
ci.yml
File metadata and controls
260 lines (221 loc) · 7.32 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
name: CI - Run Tests
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- 'packages/*/CHANGELOG.md'
- 'packages/*/package.json'
- '.changeset/**'
env:
CI: true
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- name: Install dependencies
run: pnpm install
- name: Rebuild packages
run: pnpm rebuild --filter='...[origin/${{ github.base_ref }}]'
- name: Run lint
run: pnpm exec turbo lint --filter='...[origin/${{ github.base_ref }}]'
- name: Build packages
run: pnpm exec turbo build --filter='...[origin/${{ github.base_ref }}]' --filter='!gt-next-middleware-e2e'
- name: Run tests
run: pnpm exec turbo test --filter='...[origin/${{ github.base_ref }}]' --filter='!gt-next-middleware-e2e'
test-builds:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [20, 24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Check if gt-next changed
id: gt_next_changed
shell: bash
run: |
if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -q "^packages/next/"; then
echo "changed=true" >> $GITHUB_OUTPUT
else
echo "changed=false" >> $GITHUB_OUTPUT
fi
- name: Setup Node.js
if: steps.gt_next_changed.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Setup Rust
if: steps.gt_next_changed.outputs.changed == 'true'
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- name: Install dependencies
if: steps.gt_next_changed.outputs.changed == 'true'
run: pnpm install
- name: Test Builds
if: steps.gt_next_changed.outputs.changed == 'true'
run: |
pnpm exec turbo build --filter=base...
pnpm exec turbo build:turbopack --filter=base...
pnpm exec turbo build --filter=general-cases...
pnpm exec turbo build:turbopack --filter=general-cases...
test-cli-binaries:
strategy:
matrix:
include:
- os: ubuntu-latest
arch: x64
binary: gt-linux-x64
- os: ubuntu-latest
arch: arm64
binary: gt-linux-arm64
- os: macos-latest
arch: x64
binary: gt-darwin-x64
- os: macos-latest
arch: arm64
binary: gt-darwin-arm64
- os: windows-latest
arch: x64
binary: gt-win32-x64.exe
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if CLI changed
id: gt_cli_changed
shell: bash
run: |
if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -q "^packages/cli/"; then
echo "changed=true" >> $GITHUB_OUTPUT
else
echo "changed=false" >> $GITHUB_OUTPUT
fi
- uses: pnpm/action-setup@v4
if: steps.gt_cli_changed.outputs.changed == 'true'
name: Install pnpm
- name: Setup Node.js
if: steps.gt_cli_changed.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Setup Bun
if: steps.gt_cli_changed.outputs.changed == 'true'
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Setup Rust
if: steps.gt_cli_changed.outputs.changed == 'true'
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- name: Install dependencies
if: steps.gt_cli_changed.outputs.changed == 'true'
run: pnpm install
- name: Build packages
if: steps.gt_cli_changed.outputs.changed == 'true'
run: pnpm exec turbo build --filter='gt...'
- name: Build CLI binaries
if: steps.gt_cli_changed.outputs.changed == 'true'
run: cd packages/cli && pnpm run build:bin:clean
- name: Test CLI in test environment
if: steps.gt_cli_changed.outputs.changed == 'true'
shell: bash
run: cd tests/apps/cli-test-app && pnpm install && pnpm gt --help
test-gtx-cli-binaries:
strategy:
matrix:
include:
- os: ubuntu-latest
arch: x64
binary: gtx-cli-linux-x64
- os: ubuntu-latest
arch: arm64
binary: gtx-cli-linux-arm64
- os: macos-latest
arch: x64
binary: gtx-cli-darwin-x64
- os: macos-latest
arch: arm64
binary: gtx-cli-darwin-arm64
- os: windows-latest
arch: x64
binary: gtx-cli-win32-x64.exe
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if gtx-cli wrapper changed
id: gtx_cli_changed
shell: bash
run: |
if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -qE "^packages/(cli|gtx-cli)/"; then
echo "changed=true" >> $GITHUB_OUTPUT
else
echo "changed=false" >> $GITHUB_OUTPUT
fi
- uses: pnpm/action-setup@v4
if: steps.gtx_cli_changed.outputs.changed == 'true'
name: Install pnpm
- name: Setup Node.js
if: steps.gtx_cli_changed.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Setup Bun
if: steps.gtx_cli_changed.outputs.changed == 'true'
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Setup Rust
if: steps.gtx_cli_changed.outputs.changed == 'true'
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- name: Install dependencies
if: steps.gtx_cli_changed.outputs.changed == 'true'
run: pnpm install
- name: Build packages
if: steps.gtx_cli_changed.outputs.changed == 'true'
run: pnpm exec turbo build --filter='gtx-cli...'
- name: Build gtx-cli binaries
if: steps.gtx_cli_changed.outputs.changed == 'true'
run: cd packages/gtx-cli && pnpm run build:bin:clean
- name: Test gtx-cli in test environment
if: steps.gtx_cli_changed.outputs.changed == 'true'
shell: bash
run: cd tests/apps/cli-test-app && pnpm install && pnpm gtx-cli --help
run-tests:
needs: [tests, test-builds, test-cli-binaries, test-gtx-cli-binaries]
runs-on: ubuntu-latest
steps:
- run: echo "All tests passed"