From 6fb40bfba5770b0497ba49c1eb0e706260f014ec Mon Sep 17 00:00:00 2001 From: Benjin Dubishar Date: Tue, 18 Jun 2024 15:22:28 -0700 Subject: [PATCH] [Port] Changing container image from custom to standard ubuntu (#25706) * Changing container image from custom to standard ubuntu * porting pre-yarn installs * no-op * triggering checks --- build/azure-pipelines/sql-product-build.yml | 9 +-------- build/azure-pipelines/sql-product-compile.yml | 2 ++ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/build/azure-pipelines/sql-product-build.yml b/build/azure-pipelines/sql-product-build.yml index 4e48d315b444..90718260cfc5 100644 --- a/build/azure-pipelines/sql-product-build.yml +++ b/build/azure-pipelines/sql-product-build.yml @@ -1,16 +1,9 @@ -resources: - containers: - - container: linux-x64 - image: sqltoolscontainers.azurecr.io/linux-build-agent:9 - endpoint: SqlToolsContainers - stages: - stage: Compile jobs: - job: Compile pool: - vmImage: 'Ubuntu-20.04' - container: linux-x64 + vmImage: 'ubuntu-latest' steps: - script: | set -e diff --git a/build/azure-pipelines/sql-product-compile.yml b/build/azure-pipelines/sql-product-compile.yml index 09d25109de69..22b172777bfd 100644 --- a/build/azure-pipelines/sql-product-compile.yml +++ b/build/azure-pipelines/sql-product-compile.yml @@ -58,6 +58,8 @@ steps: - script: | set -e + sudo apt-get update + sudo apt-get install -y build-essential g++ libx11-dev libxkbfile-dev libsecret-1-dev python-is-python3 libkrb5-dev fakeroot rpm CHILD_CONCURRENCY=1 yarn --frozen-lockfile displayName: Install dependencies condition: and(succeeded(), ne(variables['NODE_MODULES_RESTORED'], 'true'))