Skip to content

Commit a71275a

Browse files
committed
increase smoke test limits
1 parent e53aa2a commit a71275a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build/azure-pipelines/darwin/product-build-darwin.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ steps:
224224
APP_ROOT=$(agent.builddirectory)/VSCode-darwin-$(VSCODE_ARCH)
225225
APP_NAME="`ls $APP_ROOT | head -n 1`"
226226
yarn smoketest-no-compile --build "$APP_ROOT/$APP_NAME" --screenshots $(Build.SourcesDirectory)/.build/logs/smoke-tests
227-
timeoutInMinutes: 5
227+
timeoutInMinutes: 10
228228
displayName: Run smoke tests (Electron)
229229
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
230230
@@ -234,15 +234,15 @@ steps:
234234
APP_NAME="`ls $APP_ROOT | head -n 1`"
235235
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-darwin" \
236236
yarn smoketest-no-compile --build "$APP_ROOT/$APP_NAME" --remote --screenshots $(Build.SourcesDirectory)/.build/logs/smoke-tests-remote
237-
timeoutInMinutes: 5
237+
timeoutInMinutes: 10
238238
displayName: Run smoke tests (Remote)
239239
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
240240
241241
- script: |
242242
set -e
243243
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-web-darwin" \
244244
yarn smoketest-no-compile --web --headless
245-
timeoutInMinutes: 5
245+
timeoutInMinutes: 10
246246
displayName: Run smoke tests (Browser)
247247
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
248248

build/azure-pipelines/linux/product-build-linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ steps:
208208
set -e
209209
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
210210
yarn smoketest-no-compile --build "$APP_PATH" --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader" --screenshots $(Build.SourcesDirectory)/.build/logs/smoke-tests
211-
timeoutInMinutes: 5
211+
timeoutInMinutes: 10
212212
displayName: Run smoke tests (Electron)
213213
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
214214
@@ -217,15 +217,15 @@ steps:
217217
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
218218
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-linux-$(VSCODE_ARCH)" \
219219
yarn smoketest-no-compile --build "$APP_PATH" --remote --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader" --screenshots $(Build.SourcesDirectory)/.build/logs/smoke-tests-remote
220-
timeoutInMinutes: 5
220+
timeoutInMinutes: 10
221221
displayName: Run smoke tests (Remote)
222222
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
223223
224224
- script: |
225225
set -e
226226
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-web-linux-$(VSCODE_ARCH)" \
227227
yarn smoketest-no-compile --web --headless --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader"
228-
timeoutInMinutes: 5
228+
timeoutInMinutes: 10
229229
displayName: Run smoke tests (Browser)
230230
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
231231

build/azure-pipelines/win32/product-build-win32.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ steps:
204204
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
205205
exec { yarn smoketest-no-compile --build "$AppRoot" --screenshots $(Build.SourcesDirectory)\.build\logs\smoke-tests }
206206
displayName: Run smoke tests (Electron)
207-
timeoutInMinutes: 5
207+
timeoutInMinutes: 10
208208
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
209209
210210
- powershell: |
@@ -214,7 +214,7 @@ steps:
214214
$env:VSCODE_REMOTE_SERVER_PATH = "$(agent.builddirectory)\vscode-reh-win32-$(VSCODE_ARCH)"
215215
exec { yarn smoketest-no-compile --build "$AppRoot" --remote --screenshots $(Build.SourcesDirectory)\.build\logs\smoke-tests-remote }
216216
displayName: Run smoke tests (Remote)
217-
timeoutInMinutes: 5
217+
timeoutInMinutes: 10
218218
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
219219
220220
- powershell: |
@@ -223,7 +223,7 @@ steps:
223223
$env:VSCODE_REMOTE_SERVER_PATH = "$(agent.builddirectory)\vscode-reh-web-win32-$(VSCODE_ARCH)"
224224
exec { yarn smoketest-no-compile --web --browser firefox --headless }
225225
displayName: Run smoke tests (Browser)
226-
timeoutInMinutes: 5
226+
timeoutInMinutes: 10
227227
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
228228
229229
- task: PublishPipelineArtifact@0

0 commit comments

Comments
 (0)