Merge pull request #79 from stripedpajamas/trigger-azure

Add script to trigger Azure pipelines build
This commit is contained in:
Peter Squicciarini 2019-01-24 14:01:19 -05:00 committed by GitHub
commit a1596e9820
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -22,6 +22,7 @@ before_install:
script:
- ./build.sh
- ./trigger-azure.sh
before_deploy:
- ./create_zip.sh

7
trigger-azure.sh Executable file
View file

@ -0,0 +1,7 @@
if [ "$AZURE_TOKEN" != "" ]; then
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
curl -X POST -H "Content-Type: application/json" -H "Authorization: Basic $AZURE_TOKEN" -d '{"definition":{"id":1}}' https://dev.azure.com/VSCodium/vscodium/_apis/build/builds?api-version=5.0-preview.5
fi
fi
fi