forked from excaliburjs/Excalibur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
28 lines (28 loc) · 810 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
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
# What combinations to test
environment:
matrix:
- nodejs_version: "0.12"
platform:
- x86
- x64
install:
- ps: Install-Product node $env:nodejs_version
- npm install grunt-cli -g
- npm install
build_script:
- grunt travis
artifacts:
- path: dist\Excalibur.%APPVEYOR_BUILD_VERSION%.nupkg
name: Nuget Package
after_build:
- appveyor PushArtifact dist\Excalibur.%APPVEYOR_BUILD_VERSION%.nupkg
#build: off
matrix:
fast_finish: true
cache:
- C:\Users\appveyor\AppData\Roaming\npm\node_modules -> package.json # global npm modules
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
- node_modules -> package.json # local npm modules