Files
blog_os/azure-pipelines.yml
2019-02-08 10:19:13 +01:00

27 lines
594 B
YAML

# Documentation: https://aka.ms/yaml
trigger:
batch: true
branches:
include:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Build post braches
- post-*
pool:
vmImage: ubuntu-16.04
steps:
- bash: |
echo "Hello world from $AGENT_NAME running on $AGENT_OS"
echo "Reason: $BUILD_REASON"
echo "Requested for: $BUILD_REQUESTEDFOR"
displayName: 'Build Info'
continueOnError: true
- script: echo "Nothing to do for master branch"
displayName: "Nothing to do"