forked from fsprojects/FAKE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (25 loc) · 693 Bytes
/
appveyor.yml
File metadata and controls
28 lines (25 loc) · 693 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
image: Visual Studio 2019
# via chocolatey
##install:
## - cinst fake
##build_script:
## # See https://stackoverflow.com/a/12866669/1269722
## # Problem is that colors are lost
## # Don't blame me but powershell is the bigest crap on earth
## - cmd: fake.exe run build.fsx --parallel 3
## #- ps: .\build.cmd
build_script:
- dotnet tool restore
- dotnet fake run build.fsx --parallel 3
on_failure:
- appveyor PushArtifact FAKE.svclog
test: off
environment:
PAKET_BOOTSTRAPPER_TRACE: true
artifacts:
- path: 'nuget\dotnetcore\*.nupkg'
type: NuGetPackage
- path: 'nuget\legacy\*.nupkg'
type: NuGetPackage
- path: 'nuget\dotnetcore\Fake.netcore\*.zip'
type: Zip