Skip to content

Commit

Permalink
Create .appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
amis92 authored Jun 13, 2018
1 parent e19bc45 commit ce60367
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This is a reference script - it should be saved as 'appveyor.yml' in repo root.

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Please fill 'version' property with a version string you want appended with `.{build}` #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

version: 'v1.1.50.{build}'
image: Visual Studio 2017
environment:
github_auth_token: # this is BSData-bot encrypted OAuth token
secure: O02JLN8Q1/zGJDgSkd2GmYNN6qO3hMspj3N6F8db7Fkx+/EQxjJ9tjJdJs6OpwAp
install:
- ps: |
$install_script_url = 'https://raw.githubusercontent.com/BSData/catalogue-development/master/scripts/appveyor-ci-install-script-v1.0.ps1'
(New-Object System.Net.WebClient).DownloadString($install_script_url) | iex
build_script:
- ps: |
$build_script_url = 'https://raw.githubusercontent.com/BSData/catalogue-development/master/scripts/appveyor-ci-build-script-v1.0.ps1'
(New-Object System.Net.WebClient).DownloadString($build_script_url) | iex
test_script:
- ps: |
$test_script_url = 'https://raw.githubusercontent.com/BSData/catalogue-development/master/scripts/appveyor-ci-test-script-v1.0.ps1'
(New-Object System.Net.WebClient).DownloadString($test_script_url) | iex
deploy_script:
- ps: |
$deploy_script_url = 'https://raw.githubusercontent.com/BSData/catalogue-development/master/scripts/appveyor-ci-deploy-script-v1.0.ps1'
(New-Object System.Net.WebClient).DownloadString($deploy_script_url) | iex
artifacts:
- path: 'artifacts\*.bsi'
- path: 'artifacts\*.bsr'
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/fe58f08211387ed8cc96 # here paste your Gitter chatroom Webhook url :)
on_build_success: true
on_build_failure: true

0 comments on commit ce60367

Please sign in to comment.