Fix extension publishing during CI build (#15561)

* Disable native module recompile

* Bump distro

* Move web build step earlier
This commit is contained in:
Karl Burtram
2021-05-24 17:03:42 -07:00
committed by GitHub
parent 1d75fcfed5
commit c615affdc3
2 changed files with 13 additions and 12 deletions

View File

@@ -95,6 +95,7 @@ steps:
set -e set -e
yarn gulp vscode-linux-x64-min-ci yarn gulp vscode-linux-x64-min-ci
yarn gulp vscode-web-min-ci yarn gulp vscode-web-min-ci
yarn gulp vscode-reh-web-linux-x64-min
displayName: Build displayName: Build
env: env:
VSCODE_MIXIN_PASSWORD: $(github-distro-mixin-password) VSCODE_MIXIN_PASSWORD: $(github-distro-mixin-password)
@@ -223,18 +224,18 @@ steps:
displayName: 'Signing Extensions and Langpacks' displayName: 'Signing Extensions and Langpacks'
condition: and(succeeded(), eq(variables['signed'], true)) condition: and(succeeded(), eq(variables['signed'], true))
- script: | # - script: |
set -e # set -e
cd ./extensions/mssql/node_modules/@microsoft/ads-kerberos # cd ./extensions/mssql/node_modules/@microsoft/ads-kerberos
# npx node-gyp rebuild # # npx node-gyp rebuild
yarn install # yarn install
displayName: Recompile native node modules # displayName: Recompile native node modules
- script: | # - script: |
set -e # set -e
VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)" \ # VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)" \
yarn gulp vscode-reh-web-linux-x64-min # yarn gulp vscode-reh-web-linux-x64-min
displayName: Build web server # displayName: Build web server
- script: | - script: |
set -e set -e

View File

@@ -1,7 +1,7 @@
{ {
"name": "azuredatastudio", "name": "azuredatastudio",
"version": "1.30.0", "version": "1.30.0",
"distro": "99c64148d3393e4f67e531240b870f4cee111e06", "distro": "ab16639070613df1c9772fe028786f44ff9096f3",
"author": { "author": {
"name": "Microsoft Corporation" "name": "Microsoft Corporation"
}, },