linux: disable crash reporting in CI also in smoke tests (#142572)

This commit is contained in:
Benjamin Pasero 2022-02-15 08:45:36 +01:00
parent 7dbd7367dc
commit 5faea719c5
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -249,7 +249,8 @@ steps:
- script: |
set -e
APP_PATH=$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)
yarn smoketest-no-compile --build "$APP_PATH" --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader"
yarn smoketest-no-compile --build "$APP_PATH" --disable-crash-reporter --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader"
# TODO@electron enabling crash reporter needs Electron 17 to work (https://github.com/microsoft/vscode/issues/142572)
# Increased timeout because this test downloads stable code
timeoutInMinutes: 20
displayName: Run smoke tests (Electron)
@ -259,7 +260,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 --build "$APP_PATH" --remote --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader"
yarn smoketest-no-compile --build "$APP_PATH" --remote --disable-crash-reporter --electronArgs="--disable-dev-shm-usage --use-gl=swiftshader"
# TODO@electron enabling crash reporter needs Electron 17 to work (https://github.com/microsoft/vscode/issues/142572)
timeoutInMinutes: 10
displayName: Run smoke tests (Remote)
condition: and(succeeded(), eq(variables['VSCODE_ARCH'], 'x64'), eq(variables['VSCODE_STEP_ON_IT'], 'false'))