1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Merge pull request #2645 from Asizon/azurefix

Fix azure linux image
This commit is contained in:
haslinghuis 2021-10-29 22:39:48 +02:00 committed by GitHub
commit 41747c65b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,7 @@ variables:
repoName: betaflight-configurator-nightlies 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.** 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. releaseNotes: This is a release build. It does not contain the debug console.
linuxVmImage: 'ubuntu-20.04'
parameters: parameters:
- name: releaseBuild - name: releaseBuild
@ -121,7 +122,7 @@ stages:
- job: 'Linux' - job: 'Linux'
pool: pool:
vmImage: 'ubuntu-20.04' vmImage: '$(linuxVmImage)'
steps: steps:
- task: UseNode@1 - task: UseNode@1
@ -148,6 +149,8 @@ stages:
- stage: Release - stage: Release
jobs: jobs:
- job: Release - job: Release
pool:
vmImage: '$(linuxVmImage)'
steps: steps:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2