forked from fable-compiler/Fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (32 loc) · 984 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
36
37
init:
- git config --global core.autocrlf input
build:
verbosity: detailed
environment:
nodejs_version: "6.11.5"
cache:
- "%LOCALAPPDATA%\\Yarn"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
# # 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 2015
# before_build:
# - cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
build_script:
- cmd: build.cmd
test: off
# version: 0.0.1.{build}
artifacts:
# https://ci.appveyor.com/api/projects/fable-compiler/Fable/artifacts/src/dotnet/Fable.JS/repl.zip
- path: src\dotnet\Fable.JS\out
name: repl
type: zip
# https://ci.appveyor.com/api/projects/fable-compiler/Fable/artifacts/src/dotnet/Fable.JS/repl-bundle.zip
- path: src\dotnet\Fable.JS\bundle
name: repl-bundle
type: zip