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-08 10:45:40 +0300
committerBenjamin Pasero <benjamin.pasero@microsoft.com>2022-04-08 10:45:40 +0300
commit7e5c345ff22bbd6c172341779e2e3b63b7f174b9 (patch)
treed365eabaafeb3fc7e7ba666d3dacc41d4c06aaac /build/azure-pipelines
parentc4de759c434a311ed7c936b75c4f249d79f7de16 (diff)
smoke - remov `verbose` again
Diffstat (limited to 'build/azure-pipelines')
-rw-r--r--build/azure-pipelines/darwin/product-build-darwin.yml10
-rw-r--r--build/azure-pipelines/linux/product-build-linux-client.yml10
-rw-r--r--build/azure-pipelines/win32/product-build-win32.yml11
3 files changed, 12 insertions, 19 deletions
diff --git a/build/azure-pipelines/darwin/product-build-darwin.yml b/build/azure-pipelines/darwin/product-build-darwin.yml
index 45e5d768484..073932d7032 100644
--- a/build/azure-pipelines/darwin/product-build-darwin.yml
+++ b/build/azure-pipelines/darwin/product-build-darwin.yml
@@ -252,9 +252,8 @@ steps:
set -e
APP_ROOT=$(agent.builddirectory)/VSCode-darwin-$(VSCODE_ARCH)
APP_NAME="`ls $APP_ROOT | head -n 1`"
- yarn smoketest-no-compile --verbose --tracing --build "$APP_ROOT/$APP_NAME"
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ yarn smoketest-no-compile --tracing --build "$APP_ROOT/$APP_NAME"
+ timeoutInMinutes: 20
displayName: Run smoke tests (Electron)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
@@ -263,9 +262,8 @@ 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 --verbose --tracing --remote --build "$APP_ROOT/$APP_NAME"
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ yarn smoketest-no-compile --tracing --remote --build "$APP_ROOT/$APP_NAME"
+ timeoutInMinutes: 20
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 6fc752695da..66b9e15e881 100644
--- a/build/azure-pipelines/linux/product-build-linux-client.yml
+++ b/build/azure-pipelines/linux/product-build-linux-client.yml
@@ -276,9 +276,8 @@ steps:
- script: |
set -e
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
- yarn smoketest-no-compile --verbose --tracing --build "$APP_PATH"
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ yarn smoketest-no-compile --tracing --build "$APP_PATH"
+ timeoutInMinutes: 20
displayName: Run smoke tests (Electron)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
@@ -286,9 +285,8 @@ 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 --verbose --tracing --remote --build "$APP_PATH"
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ yarn smoketest-no-compile --tracing --remote --build "$APP_PATH"
+ timeoutInMinutes: 20
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 e488a218e3b..79ef705a07b 100644
--- a/build/azure-pipelines/win32/product-build-win32.yml
+++ b/build/azure-pipelines/win32/product-build-win32.yml
@@ -236,11 +236,9 @@ steps:
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
- exec { yarn smoketest-no-compile --verbose --tracing --build "$AppRoot" }
+ exec { yarn smoketest-no-compile --tracing --build "$AppRoot" }
displayName: Run smoke tests (Electron)
- # Increased timeout because this test downloads stable code
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ timeoutInMinutes: 20
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |
@@ -248,10 +246,9 @@ 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 --verbose --tracing --remote --build "$AppRoot" }
+ exec { yarn smoketest-no-compile --tracing --remote --build "$AppRoot" }
displayName: Run smoke tests (Remote)
- # TODO@bpasero reduce timeout and remove --verbose when done
- timeoutInMinutes: 60
+ timeoutInMinutes: 20
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |