From b2f2d276c77bddcfc239fc4003235fbf2758f172 Mon Sep 17 00:00:00 2001 From: Asizon <43983086+Asizon@users.noreply.github.com> Date: Thu, 28 Oct 2021 07:38:37 +0200 Subject: [PATCH 1/2] fix azure linux image --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ee0f6c1e..71dca1ef 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,6 +17,7 @@ variables: repoName: betaflight-configurator-nightlies debugReleaseNotes: This is a nightly build off the tip of 'master'. It may be unstable and result in corrupted configurations or data loss. **Use only for testing.** releaseNotes: This is a release build. It does not contain the debug console. + linuxVmImage: 'ubuntu-20.04' parameters: - name: releaseBuild @@ -121,7 +122,7 @@ stages: - job: 'Linux' pool: - vmImage: 'ubuntu-20.04' + vmImage: '$(linuxVmImage)' steps: - task: UseNode@1 From 8b7566d0ff994cce5c3e5983277f1eb66bc2bded Mon Sep 17 00:00:00 2001 From: Asizon <43983086+Asizon@users.noreply.github.com> Date: Fri, 29 Oct 2021 07:25:18 +0200 Subject: [PATCH 2/2] add vmimage into release step --- azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 71dca1ef..7db86d74 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -149,6 +149,8 @@ stages: - stage: Release jobs: - job: Release + pool: + vmImage: '$(linuxVmImage)' steps: - task: DownloadPipelineArtifact@2