diff --git a/build/azure-pipelines/darwin/build.sh b/build/azure-pipelines/darwin/build.sh index af558b8c145..a47546249fc 100755 --- a/build/azure-pipelines/darwin/build.sh +++ b/build/azure-pipelines/darwin/build.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash set -e yarn gulp vscode-darwin-min +yarn gulp vscode-reh-darwin-min yarn gulp upload-vscode-sourcemaps \ No newline at end of file diff --git a/build/azure-pipelines/linux/build.sh b/build/azure-pipelines/linux/build.sh index bd251ebc789..1c79d764862 100755 --- a/build/azure-pipelines/linux/build.sh +++ b/build/azure-pipelines/linux/build.sh @@ -1,3 +1,7 @@ #!/usr/bin/env bash set -e -yarn gulp "vscode-linux-$VSCODE_ARCH-min" \ No newline at end of file +yarn gulp "vscode-linux-$VSCODE_ARCH-min" + +if [[ "$VSCODE_ARCH" != "ia32" ]]; then + yarn gulp vscode-reh-linux-$VSCODE_ARCH-min +fi \ No newline at end of file diff --git a/build/azure-pipelines/win32/build.ps1 b/build/azure-pipelines/win32/build.ps1 index 60325ba54ca..8334a87e029 100644 --- a/build/azure-pipelines/win32/build.ps1 +++ b/build/azure-pipelines/win32/build.ps1 @@ -1,4 +1,5 @@ . build/azure-pipelines/win32/exec.ps1 $ErrorActionPreference = "Stop" exec { yarn gulp "vscode-win32-$env:VSCODE_ARCH-min" } +exec { yarn gulp "vscode-reh-win32-$env:VSCODE_ARCH-min" } exec { yarn gulp "vscode-win32-$env:VSCODE_ARCH-inno-updater" } \ No newline at end of file diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js new file mode 100644 index 00000000000..d7361082a89 --- /dev/null +++ b/build/gulpfile.reh.js @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +'use strict'; + +const gulp = require('gulp'); + +const noop = () => { return Promise.resolve(); }; + +gulp.task('vscode-reh-win32-ia32-min', noop); +gulp.task('vscode-reh-win32-x64-min', noop); +gulp.task('vscode-reh-darwin-min', noop); +gulp.task('vscode-reh-linux-x64-min', noop); +gulp.task('vscode-reh-linux-arm-min', noop);