-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
37 lines (36 loc) · 1.07 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
init:
- git config --global core.autocrlf true
clone_depth: 10
environment:
matrix:
- nodejs_version: "6"
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version
# Typical npm stuff.
- if not exist "C:\nc" md C:\nc
- npm config set cache C:\nc
- npm version
- npm install -g bower
- npm install --no-optional
- bower install
build_script:
- node node_modules\ember-cli\bin\ember build --environment=production
- cd dist && npm install express && npm install [email protected]
version: 1.0.{build}
#cache node_modules and bower_componets between builds to speed up tests
cache:
- node_modules
- bower_components
- C:\nc
artifacts:
- path: dist
name: dist
type: zip
notifications:
- provider: Webhook
url: https://trms-build-kicker.herokuapp.com/appveyor?failed={{failed}}&branch=master&projectName=cablecast
- provider: Slack
auth_token:
secure: RCjrjaDtlVlWvthh0FrzeNGqWLRwibK+rrVW4nnhrJjo2g9OxUCt6cq2fjy3Haq2VJUJdFfC452ndFWPUz1zAA==
channel: '#builds'