From a9951e977c8a706930171149de5e12d281059b38 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Thu, 20 Apr 2023 08:35:14 -0700 Subject: [PATCH] Disable DEB publish step (#22795) * Disable DEB publishing * Revert "Reenable DEB build (#22794)" This reverts commit 9132695d614120d78fbc376c24637f3d67792743. --- .../linux/sql-product-build-linux.yml | 11 ++++++----- build/azure-pipelines/linux/sql-publish.ps1 | 16 ++++++++-------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/build/azure-pipelines/linux/sql-product-build-linux.yml b/build/azure-pipelines/linux/sql-product-build-linux.yml index 6ae292123f..4d6d2fae20 100644 --- a/build/azure-pipelines/linux/sql-product-build-linux.yml +++ b/build/azure-pipelines/linux/sql-product-build-linux.yml @@ -180,11 +180,12 @@ steps: # continueOnError: true # condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true')) - - script: | - set -e - yarn gulp vscode-linux-x64-build-deb - displayName: Build Deb - condition: and(succeeded(), ne(variables['EXTENSIONS_ONLY'], 'true')) + # {{SQL CARBON TODO}} - Reenable + # - script: | + # set -e + # yarn gulp vscode-linux-x64-build-deb + # displayName: Build Deb + # condition: and(succeeded(), ne(variables['EXTENSIONS_ONLY'], 'true')) - script: | set -e diff --git a/build/azure-pipelines/linux/sql-publish.ps1 b/build/azure-pipelines/linux/sql-publish.ps1 index 2208b1eff1..5e54f8fa7d 100644 --- a/build/azure-pipelines/linux/sql-publish.ps1 +++ b/build/azure-pipelines/linux/sql-publish.ps1 @@ -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 # Publish DEB -$PlatformDeb = "linux-deb-$Arch" -$DebFilename = "$(Get-ChildItem -File -Name $artifactsDir\linux\deb\amd64\deb\*.deb)" -$DebPath = "$artifactsDir\linux\deb\amd64\deb\$DebFilename" -$DebUploadName = "azuredatastudio-linux-$Version" +# $PlatformDeb = "linux-deb-$Arch" +# $DebFilename = "$(Get-ChildItem -File -Name $artifactsDir\linux\deb\amd64\deb\*.deb)" +# $DebPath = "$artifactsDir\linux\deb\amd64\deb\$DebFilename" +# $DebUploadName = "azuredatastudio-linux-$Version" -If (-NOT ($Quality -eq "stable")) { - $DebUploadName = "$DebUploadName-$Quality" -} +# If (-NOT ($Quality -eq "stable")) { +# $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 $PlatformRpm = "linux-rpm-$Arch"