Merge pull request #4885 from Homebrew/azure-pipelines

Try Azure Pipelines
This commit is contained in:
Mike McQuaid 2018-09-13 13:58:21 +01:00 committed by GitHub
commit 29947d858e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
azure-pipelines.yml Normal file
View File

@ -0,0 +1,21 @@
jobs:
- job: macOS
pool:
vmImage: xcode9-macos10.13
steps:
- bash: |
rm -rf /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask*
brew update-reset
brew test-bot
displayName: brew test-bot
env:
HOMEBREW_GITHUB_API_TOKEN: $(github.publicApiToken)
- job: Linux
pool:
vmImage: ubuntu-16.04
steps:
- bash: |
"$PWD/bin/brew" test-bot
displayName: brew test-bot
env:
HOMEBREW_GITHUB_API_TOKEN: $(github.publicApiToken)