From 9c4e0a4ae6a94d46875b536c232850f97830a7c3 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 25 Jul 2018 07:46:56 +0900 Subject: [PATCH] :v: --- appveyor.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 5505075d8..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,45 +0,0 @@ -# appveyor file -# http://www.appveyor.com/docs/appveyor-yml - -environment: - matrix: - - nodejs_version: 10.1.0 - -platform: - - x64 - - Any CPU - -cache: - - node_modules - -build: off - -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 - - - npm install - -init: - # git clone の際の改行を変換しないようにします - - git config --global core.autocrlf false - -before_test: - # 設定ファイルを配置 - - cp ./.travis/default.yml ./.config - - cp ./.travis/test.yml ./.config - - - npm run build - -test_script: - - npm test