forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 58
308 lines (256 loc) · 9.97 KB
/
build-verification.yml
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
name: Build Verification
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
windows:
name: Windows
runs-on: windows-2022
timeout-minutes: 60
env:
CHILD_CONCURRENCY: "1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache Yarn dependencies
uses: actions/cache@v4
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --network-timeout 180000
- name: Create node_modules archive
run: |
mkdir -Force .build
node build/azure-pipelines/common/listNodeModules.js .build/node_modules_list.txt
mkdir -Force .build/node_modules_cache
7z.exe a .build/node_modules_cache/cache.7z -mx3 `@.build/node_modules_list.txt
- name: Compile and Download
run: yarn npm-run-all --max-old-space-size=4095 -lp compile playwright-install download-builtin-extensions
- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile
# Runner is getting caught on this,
# commenting out until resolved
- name: Run Unit Tests (Electron)
run: .\scripts\test.bat
continue-on-error: true
- name: Run Unit Tests (node.js)
run: yarn test-node
- name: Run Unit Tests (Browser, Chromium)
run: yarn test-browser-no-install --browser chromium
- name: Run Integration Tests (Electron)
run: .\scripts\test-integration.bat
continue-on-error: true
- name: Run Integration Tests (Browser, Firefox)
timeout-minutes: 20
run: .\scripts\test-web-integration.bat --browser firefox
- name: Run Integration Tests (Remote)
timeout-minutes: 20
run: .\scripts\test-remote-integration.bat
continue-on-error: true
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 40
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions
- name: Setup Build Environment
run: |
sudo apt-get update
sudo apt-get install -y libxkbfile-dev pkg-config libkrb5-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
sudo cp ./build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
sudo chmod +x /etc/init.d/xvfb
sudo update-rc.d xvfb defaults
sudo service xvfb start
- name: Compute node modules cache key
id: nodeModulesCacheKey
run: echo "value=$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)" >> $GITHUB_OUTPUT
- name: Cache node modules
id: cacheNodeModules
uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-cacheNodeModulesLinux-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-cacheNodeModulesLinux-
- name: Get yarn cache directory path
id: yarnCacheDirPath
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Cache yarn directory
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
uses: actions/cache@v4
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
restore-keys: ${{ runner.os }}-yarnCacheDir-
- name: Execute yarn
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: |
yarn --network-timeout 180000
yarn playwright install
- name: Compile and Download
run: ./scripts/pearai/setup-environment.sh
- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile
# Runner is getting caught on this,
# commenting out until resolved
# - name: Run Unit Tests (Electron)
# id: electron-unit-tests
# run: DISPLAY=:10 ./scripts/test.sh
# continue-on-error: true
# Part of the VSCode Scripts
# Disabling since it isn't relevant to PearAI
# - name: Run Unit Tests (node.js)
# id: nodejs-unit-tests
# run: yarn test-node
- name: Run Unit Tests (Browser, Chromium)
id: browser-unit-tests
run: DISPLAY=:10 yarn test-browser-no-install --browser chromium
# Part of the VSCode Scripts
# Disabling since it isn't relevant to PearAI
# - name: Run Integration Tests (Electron)
# id: electron-integration-tests
# run: DISPLAY=:10 ./scripts/test-integration.sh
- name: Run Integration Tests (Browser, Chromium)
id: browser-integration-tests
run: DISPLAY=:10 ./scripts/test-web-integration.sh --browser chromium
- name: Run Integration Tests (Remote)
id: electron-remote-integration-tests
timeout-minutes: 15
run: DISPLAY=:10 ./scripts/test-remote-integration.sh
continue-on-error: true
darwin:
name: macOS
runs-on: macos-latest
timeout-minutes: 40
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Setup MacOS Environment
run: softwareupdate --install-rosetta --agree-to-license
- name: Install Dependencies
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: |
./scripts/pearai/setup-environment.sh
yarn install
yarn add --dev npm-run-all
- name: Compile and Download
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ELECTRON_VERSION: v31.1.1 # or whatever the latest version is
run: yarn npm-run-all --max-old-space-size=4095 -lp compile playwright-install download-builtin-extensions
- name: Compile Integration Tests
run: yarn --cwd test/integration/browser compile
# This is required for SecretStorage unittests
- name: Create temporary keychain
run: |
security create-keychain -p pwd $RUNNER_TEMP/buildagent.keychain
security default-keychain -s $RUNNER_TEMP/buildagent.keychain
security unlock-keychain -p pwd $RUNNER_TEMP/buildagent.keychain
# Part of the VSCode Scripts, currently not working
# due to Electron issues.
- name: Run Unit Tests (Electron)
run: DISPLAY=:10 ./scripts/test.sh
continue-on-error: True
- name: Run Unit Tests (node.js)
run: yarn test-node
- name: Run Unit Tests (Browser, Chromium)
run: |
DISPLAY=:10 yarn test-browser-no-install --browser chromium
DISPLAY=:10 yarn test-browser-no-install --browser webkit
# Part of the VSCode Scripts, currently not working
# due to Electron issues.
- name: Run Integration Tests (Electron)
run: DISPLAY=:10 ./scripts/test-integration.sh
# Passed Locally
- name: Run Integration Tests (Browser, Webkit)
run: |
DISPLAY=:10 ./scripts/test-web-integration.sh --browser webkit
DISPLAY=:10 ./scripts/test-web-integration.sh --browser chromium
# Part of the VSCode Scripts, currently not working
# due to Electron issues.
# - name: Run Integration Tests (Remote)
# timeout-minutes: 15
# run: DISPLAY=:10 ./scripts/test-remote-integration.sh
# continue-on-error: true
hygiene:
runs-on: ubuntu-latest
timeout-minutes: 40
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libkrb5-dev
- name: Compute cache keys
id: cache-keys
run: |
echo "node_modules_key=$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)" >> $GITHUB_OUTPUT
echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Cache node_modules
uses: actions/cache@v4
id: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-node-modules-${{ steps.cache-keys.outputs.node_modules_key }}
- name: Cache Yarn directory
uses: actions/cache@v4
if: steps.cache-node-modules.outputs.cache-hit != 'true'
with:
path: ${{ steps.cache-keys.outputs.yarn_cache_dir }}
key: ${{ runner.os }}-yarn-${{ steps.cache-keys.outputs.node_modules_key }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --network-timeout 180000
- name: Download Playwright
run: yarn playwright-install
- name: Run checks
run: |
yarn valid-layers-check
yarn --cwd build compile
yarn eslint
yarn vscode-dts-compile-check
yarn tsec-compile-check
# Uncomment when issues are resolved
# - name: Run Hygiene Checks
# run: yarn gulp hygiene
# - name: Check clean git state
# run: ./.github/workflows/check-clean-git-state.sh