-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.appveyor.yml
More file actions
46 lines (37 loc) · 954 Bytes
/
.appveyor.yml
File metadata and controls
46 lines (37 loc) · 954 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
image: Visual Studio 2017
configuration: Debug
environment:
vsuffix: "-alpha$(APPVEYOR_BUILD_NUMBER)"
githubdeploy: false
install:
- ps: nuget install FSharp.Compiler.Tools -ExcludeVersion -OutputDirectory extra
build: off
build_script:
- cmd: set PATH=%PATH%;%APPVEYOR_BUILD_FOLDER%\extra\FSharp.Compiler.Tools\tools\
- cmd: fsi --exec ./build.fsx
test: off
artifacts:
- path: '**\bin\*\*.nupkg'
skip_branch_with_pr: true
for:
- branches:
except:
- /deploy-v.*/
environment:
vsuffix: "-alpha$(APPVEYOR_BUILD_NUMBER)"
githubdeploy: false
- branches:
only:
- /deploy-v.*-beta.*/
environment:
vsuffix: "-beta$(APPVEYOR_BUILD_NUMBER)"
is_prerelease: true
githubdeploy: true
- branches:
only:
- /deploy-v[\d,.]*/
configuration: Release
environment:
vsuffix: ".$(APPVEYOR_BUILD_NUMBER)"
is_prerelease: false
githubdeploy: true