Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix azure pipelines #402

Merged
merged 1 commit into from
Oct 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ variables:
owner: betaflight
repoName: betaflight-tx-lua-scripts-nightlies
releaseNotes: 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.**
vmImage: 'ubuntu-20.04'

name: $(Date:yyyyMMdd).$(BuildID)

Expand All @@ -36,7 +37,7 @@ stages:
jobs:
- job: 'Linux'
pool:
vmImage: 'ubuntu-20.04'
vmImage: '$(vmImage)'
steps:
- script: sudo apt-get -y install lua5.2
displayName: 'Install lua compiler.'
Expand All @@ -51,6 +52,8 @@ stages:
- stage: Release
jobs:
- job: Release
pool:
vmImage: '$(vmImage)'
steps:
- task: DownloadPipelineArtifact@2
inputs:
Expand Down