Disable DEB publish step (#22795)

* Disable DEB publishing

* Revert "Reenable DEB build (#22794)"

This reverts commit 9132695d61.
This commit is contained in:
Karl Burtram
2023-04-20 08:35:14 -07:00
committed by GitHub
parent 9132695d61
commit a9951e977c
2 changed files with 14 additions and 13 deletions

View File

@@ -180,11 +180,12 @@ steps:
# continueOnError: true # continueOnError: true
# condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true')) # condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
- script: | # {{SQL CARBON TODO}} - Reenable
set -e # - script: |
yarn gulp vscode-linux-x64-build-deb # set -e
displayName: Build Deb # yarn gulp vscode-linux-x64-build-deb
condition: and(succeeded(), ne(variables['EXTENSIONS_ONLY'], 'true')) # displayName: Build Deb
# condition: and(succeeded(), ne(variables['EXTENSIONS_ONLY'], 'true'))
- script: | - script: |
set -e set -e

View File

@@ -27,16 +27,16 @@ If (-NOT ($Quality -eq "stable")) {
node $sourcesDir\build\azure-pipelines\common\publish.js $Quality $PlatformLinux archive-unsigned "$TarballUploadName.tar.gz" $Version true $TarballPath $CommitId node $sourcesDir\build\azure-pipelines\common\publish.js $Quality $PlatformLinux archive-unsigned "$TarballUploadName.tar.gz" $Version true $TarballPath $CommitId
# Publish DEB # Publish DEB
$PlatformDeb = "linux-deb-$Arch" # $PlatformDeb = "linux-deb-$Arch"
$DebFilename = "$(Get-ChildItem -File -Name $artifactsDir\linux\deb\amd64\deb\*.deb)" # $DebFilename = "$(Get-ChildItem -File -Name $artifactsDir\linux\deb\amd64\deb\*.deb)"
$DebPath = "$artifactsDir\linux\deb\amd64\deb\$DebFilename" # $DebPath = "$artifactsDir\linux\deb\amd64\deb\$DebFilename"
$DebUploadName = "azuredatastudio-linux-$Version" # $DebUploadName = "azuredatastudio-linux-$Version"
If (-NOT ($Quality -eq "stable")) { # If (-NOT ($Quality -eq "stable")) {
$DebUploadName = "$DebUploadName-$Quality" # $DebUploadName = "$DebUploadName-$Quality"
} # }
node $sourcesDir\build\azure-pipelines\common\publish.js $Quality $PlatformDeb package "$DebUploadName.deb" $Version true $DebPath $CommitId # node $sourcesDir\build\azure-pipelines\common\publish.js $Quality $PlatformDeb package "$DebUploadName.deb" $Version true $DebPath $CommitId
# Publish RPM # Publish RPM
$PlatformRpm = "linux-rpm-$Arch" $PlatformRpm = "linux-rpm-$Arch"