# 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 pull requests. - master # 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"