-
Notifications
You must be signed in to change notification settings - Fork 73
/
appveyor.yml
46 lines (38 loc) · 1.06 KB
/
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
38
39
40
41
42
43
44
45
46
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
install:
# Get the latest stable version of Node 0.STABLE.latest
- cmd: nuget restore
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- cmd: npm config set spin false
- cmd: npm install -g npm@^2
- cmd: npm install -g ember-cli bower
- cmd: npm install
- cmd: bower install
- cmd: npm run-script release
- ps: Copy-Item .\*.txt .\dist
# Don't actually build.
build: off
# Tests are executed elsewhere
test: off
# Set build version format here instead of in the admin panel.
version: "{build}"
artifacts:
- path: .\dist
name: Klondike
type: zip
- path: LICENSE.txt
name: License
- path: COPYRIGHT.txt
name: Copyright
cache:
- packages -> **\packages.config
- node_modules -> package.json
- bower_components -> bower.json
- '%LocalAppData%\NuGet\Cache'