forked from fable-compiler/Fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
35 lines (30 loc) · 960 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
31
32
33
34
35
init:
- git config --global core.autocrlf input
build:
verbosity: detailed
# environment:
# nodejs_version: "10.16.3"
# cache:
# - "%LOCALAPPDATA%\\Yarn"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of .NET Core
- cmd: choco install dotnet-5.0-sdk --no-progress
# Get the latest stable version of Node.js
- ps: choco install nodejs --no-progress
# # Update npm
# # There seems to be issues with npm 5.4 in Windows
# # See https://github.com/npm/npm/issues/18380
# - npm install -g [email protected]
os: Visual Studio 2019
# before_build:
# - cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
build_script:
- cmd: dotnet fsi build.fsx test
test: off
# version: 0.0.1.{build}
# artifacts:
# # https://ci.appveyor.com/api/projects/fable-compiler/Fable/artifacts/src/fable-standalone/fable-standalone.zip
# - path: src\fable-standalone\dist
# name: fable-standalone
# type: zip