forked from javydekoning/AppVeyorDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
30 lines (27 loc) · 855 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#---------------------------------#
# environment configuration #
#---------------------------------#
version: 1.0.{build}
os: WMF 5
install:
- ps: . .\AppVeyor\AppVeyorInstall.ps1
environment:
MySecureVar:
secure: 2miEAGV72ED32TvZbXUbQA== #This is secured
MyNonSecureVar: NonSecure
ModuleName: appVeyorDemo
#---------------------------------#
# build configuration #
#---------------------------------#
build_script:
- ps: . .\AppVeyor\AppVeyorBuild.ps1
#---------------------------------#
# test configuration #
#---------------------------------#
test_script:
- ps: . .\AppVeyor\AppVeyorTest.ps1
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy_script:
- ps: . .\AppVeyor\AppveyorDeploy.ps1