mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
32 lines
637 B
YAML
32 lines
637 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-*
|
|
|
|
pr:
|
|
branches:
|
|
exclude:
|
|
- master
|
|
|
|
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"
|