Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Pasero <benjamin.pasero@microsoft.com>2022-04-06 11:41:15 +0300
committerBenjamin Pasero <benjamin.pasero@microsoft.com>2022-04-06 11:41:22 +0300
commit18377e6ee2484f76c4ed3f185ef4561e29b70bfb (patch)
treeb2e6d19dd72ecd405489dec5900bf6c0d302650e /build/azure-pipelines
parentbf63ea1932dd253745f38a4cbe26bb9be01801b1 (diff)
smoke - allow to enable verbose vscode logs and enable for now
Diffstat (limited to 'build/azure-pipelines')
-rw-r--r--build/azure-pipelines/darwin/product-build-darwin.yml11
-rw-r--r--build/azure-pipelines/linux/product-build-linux-client.yml11
-rw-r--r--build/azure-pipelines/win32/product-build-win32.yml10
3 files changed, 18 insertions, 14 deletions
diff --git a/build/azure-pipelines/darwin/product-build-darwin.yml b/build/azure-pipelines/darwin/product-build-darwin.yml
index 1c529a95362..9d8e9225976 100644
--- a/build/azure-pipelines/darwin/product-build-darwin.yml
+++ b/build/azure-pipelines/darwin/product-build-darwin.yml
@@ -245,9 +245,9 @@ steps:
set -e
APP_ROOT=$(agent.builddirectory)/VSCode-darwin-$(VSCODE_ARCH)
APP_NAME="`ls $APP_ROOT | head -n 1`"
- yarn smoketest-no-compile --tracing --build "$APP_ROOT/$APP_NAME"
- # Increased timeout because this test downloads stable code
- timeoutInMinutes: 20
+ yarn smoketest-no-compile --verbose --tracing --build "$APP_ROOT/$APP_NAME"
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
displayName: Run smoke tests (Electron)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
@@ -256,8 +256,9 @@ steps:
APP_ROOT=$(agent.builddirectory)/VSCode-darwin-$(VSCODE_ARCH)
APP_NAME="`ls $APP_ROOT | head -n 1`"
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-darwin-$(VSCODE_ARCH)" \
- yarn smoketest-no-compile --tracing --remote --build "$APP_ROOT/$APP_NAME"
- timeoutInMinutes: 10
+ yarn smoketest-no-compile --verbose --tracing --remote --build "$APP_ROOT/$APP_NAME"
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
displayName: Run smoke tests (Remote)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
diff --git a/build/azure-pipelines/linux/product-build-linux-client.yml b/build/azure-pipelines/linux/product-build-linux-client.yml
index 5f15732ad85..2e8399f327f 100644
--- a/build/azure-pipelines/linux/product-build-linux-client.yml
+++ b/build/azure-pipelines/linux/product-build-linux-client.yml
@@ -267,9 +267,9 @@ steps:
- script: |
set -e
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
- yarn smoketest-no-compile --tracing --build "$APP_PATH"
- # Increased timeout because this test downloads stable code
- timeoutInMinutes: 20
+ yarn smoketest-no-compile --verbose --tracing --build "$APP_PATH"
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
displayName: Run smoke tests (Electron)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
@@ -277,8 +277,9 @@ steps:
set -e
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
VSCODE_REMOTE_SERVER_PATH="$(agent.builddirectory)/vscode-reh-linux-$(VSCODE_ARCH)" \
- yarn smoketest-no-compile --tracing --remote --build "$APP_PATH"
- timeoutInMinutes: 10
+ yarn smoketest-no-compile --verbose --tracing --remote --build "$APP_PATH"
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
displayName: Run smoke tests (Remote)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
diff --git a/build/azure-pipelines/win32/product-build-win32.yml b/build/azure-pipelines/win32/product-build-win32.yml
index cd18ffe4c7a..dc4a5f9a17f 100644
--- a/build/azure-pipelines/win32/product-build-win32.yml
+++ b/build/azure-pipelines/win32/product-build-win32.yml
@@ -229,10 +229,11 @@ steps:
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
- exec { yarn smoketest-no-compile --tracing --build "$AppRoot" }
+ exec { yarn smoketest-no-compile --verbose --tracing --build "$AppRoot" }
displayName: Run smoke tests (Electron)
# Increased timeout because this test downloads stable code
- timeoutInMinutes: 20
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |
@@ -240,9 +241,10 @@ steps:
$ErrorActionPreference = "Stop"
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
$env:VSCODE_REMOTE_SERVER_PATH = "$(agent.builddirectory)\vscode-reh-win32-$(VSCODE_ARCH)"
- exec { yarn smoketest-no-compile --tracing --remote --build "$AppRoot" }
+ exec { yarn smoketest-no-compile --verbose --tracing --remote --build "$AppRoot" }
displayName: Run smoke tests (Remote)
- timeoutInMinutes: 10
+ # TODO@bpasero reduce timeout and remove --verbose when done
+ timeoutInMinutes: 60
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |