Last active
January 8, 2020 06:07
-
-
Save Fleid/d6cdfc5177fc9203a2fc926bb84afa55 to your computer and use it in GitHub Desktop.
YAML file describing a Build pipeline of an Azure Stream Analytics job in Azure DevOps Pipelines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trigger: | |
- master | |
pool: | |
vmImage: 'windows-latest' | |
variables: | |
- group: StagingVariableGroup | |
steps: | |
- task: AzurePowerShell@4 | |
displayName: 'Azure PowerShell script: build.ps1' | |
inputs: | |
azureSubscription: 'MyAzureSubscription()' | |
ScriptType: 'FilePath' | |
ScriptPath: 'deploy/build.ps1' | |
FailOnStandardError: true | |
azurePowerShellVersion: 'LatestVersion' | |
- task: PublishBuildArtifacts@1 | |
displayName: 'Publish Artifact: drop' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-> build.ps1
Walk-through