smoke - drop legacy tests

This commit is contained in:
Benjamin Pasero 2022-04-06 08:00:42 +02:00
parent a5a81f9575
commit 82cac76aef
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65
3 changed files with 0 additions and 64 deletions

View file

@ -249,7 +249,6 @@ steps:
# Increased timeout because this test downloads stable code
timeoutInMinutes: 20
displayName: Run smoke tests (Electron)
# continueOnError: true
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
- script: |
@ -260,29 +259,8 @@ steps:
yarn smoketest-no-compile --tracing --remote --build "$APP_ROOT/$APP_NAME"
timeoutInMinutes: 10
displayName: Run smoke tests (Remote)
# continueOnError: true
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
# - script: |
# set -e
# APP_ROOT=$(agent.builddirectory)/VSCode-darwin-$(VSCODE_ARCH)
# APP_NAME="`ls $APP_ROOT | head -n 1`"
# yarn smoketest-no-compile --legacy --tracing --build "$APP_ROOT/$APP_NAME"
# # Increased timeout because this test downloads stable code
# timeoutInMinutes: 20
# displayName: Run smoke tests (Legacy, Electron)
# condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
# - script: |
# set -e
# 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 --legacy --tracing --remote --build "$APP_ROOT/$APP_NAME"
# timeoutInMinutes: 10
# displayName: Run smoke tests (Legacy, Remote)
# condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
- task: PublishPipelineArtifact@0
inputs:
artifactName: crash-dump-macos-$(VSCODE_ARCH)

View file

@ -271,7 +271,6 @@ steps:
# Increased timeout because this test downloads stable code
timeoutInMinutes: 20
displayName: Run smoke tests (Electron)
# continueOnError: true
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
- script: |
@ -281,27 +280,8 @@ steps:
yarn smoketest-no-compile --tracing --remote --build "$APP_PATH"
timeoutInMinutes: 10
displayName: Run smoke tests (Remote)
# continueOnError: true
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
# - script: |
# set -e
# APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
# yarn smoketest-no-compile --legacy --tracing --build "$APP_PATH"
# # Increased timeout because this test downloads stable code
# timeoutInMinutes: 20
# displayName: Run smoke tests (Legacy, Electron)
# condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
# - script: |
# 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 --legacy --tracing --remote --build "$APP_PATH"
# timeoutInMinutes: 10
# displayName: Run smoke tests (Legacy, Remote)
# condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))
- task: PublishPipelineArtifact@0
inputs:
artifactName: crash-dump-linux-$(VSCODE_ARCH)

View file

@ -231,7 +231,6 @@ steps:
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
exec { yarn smoketest-no-compile --tracing --build "$AppRoot" }
displayName: Run smoke tests (Electron)
continueOnError: true
# Increased timeout because this test downloads stable code
timeoutInMinutes: 20
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
@ -243,27 +242,6 @@ steps:
$env:VSCODE_REMOTE_SERVER_PATH = "$(agent.builddirectory)\vscode-reh-win32-$(VSCODE_ARCH)"
exec { yarn smoketest-no-compile --tracing --remote --build "$AppRoot" }
displayName: Run smoke tests (Remote)
continueOnError: true
timeoutInMinutes: 10
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
$AppRoot = "$(agent.builddirectory)\VSCode-win32-$(VSCODE_ARCH)"
exec { yarn smoketest-no-compile --legacy --tracing --build "$AppRoot" }
displayName: Run smoke tests (Legacy, Electron)
# Increased timeout because this test downloads stable code
timeoutInMinutes: 20
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$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 --legacy --tracing --remote --build "$AppRoot" }
displayName: Run smoke tests (Legacy, Remote)
timeoutInMinutes: 10
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))