From 10e5fab2c277fc4dda6d8e66fee179f0e37882c9 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Thu, 27 Jul 2023 12:27:53 +0200 Subject: [PATCH] Fixes CI --- .azure-pipelines/publish-nightly.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.azure-pipelines/publish-nightly.yml b/.azure-pipelines/publish-nightly.yml index e6efeeed..69e6aed7 100644 --- a/.azure-pipelines/publish-nightly.yml +++ b/.azure-pipelines/publish-nightly.yml @@ -41,6 +41,10 @@ extends: workingDirectory: $(Build.SourcesDirectory)/dependencies/vscode/out-monaco-editor-core testPlatforms: [] buildSteps: + - name: Install libkrb5-dev + if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }} + run: sudo apt install -y libkrb5-dev + - script: npm ci displayName: Install NPM dependencies