Sharkey/appveyor.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2016-12-30 14:35:12 +02:00
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: 7.3.0
2017-01-18 07:52:08 +02:00
services:
- mongodb
2016-12-30 19:24:03 +02:00
build: off
2016-12-30 14:35:12 +02:00
install:
# Update Node.js
# 標準で入っている Node.js を更新します (2014/11/13 時点では、v0.10.32 が標準)
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- node --version
# Update NPM
- npm install -g npm
- npm --version
# Update node-gyp
# 必須! node-gyp のバージョンを上げないと、ネイティブモジュールのコンパイルに失敗します
- npm install -g node-gyp
2016-12-30 19:28:21 +02:00
- npm install
2016-12-30 19:27:33 +02:00
2016-12-30 14:35:12 +02:00
init:
# git clone の際の改行を変換しないようにします
- git config --global core.autocrlf false
2017-01-18 07:50:44 +02:00
before_test:
2017-01-18 08:16:58 +02:00
# Redisをインストール
2017-01-18 08:20:39 +02:00
- nuget install redis-64 -excludeversion
- redis-64\tools\redis-server.exe --service-install
- redis-64\tools\redis-server.exe --service-start
2017-01-18 08:16:58 +02:00
2017-01-18 08:15:22 +02:00
- mkdir .\.config
- copy .\.ci-files\default.yml .\.config
- copy .\.ci-files\test.yml .\.config
- npm run build
2017-01-18 07:50:44 +02:00
2016-12-30 14:35:12 +02:00
test_script:
- npm test
2017-01-18 07:57:45 +02:00
cache:
- node_modules