forked from jekyll/jekyll-admin
-
Notifications
You must be signed in to change notification settings - Fork 15
/
appveyor.yml
43 lines (36 loc) · 825 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
environment:
nodejs_version: 8
RACK_ENV: test
JEKYLL_LOG_LEVEL: warn
RUBY_VERSION: 25
matrix:
- TEST_SUITE: node
- TEST_SUITE: ruby
JEKYLL_VERSION: "~> 3.8.6"
- TEST_SUITE: ruby
JEKYLL_VERSION: "~> 3.9"
- TEST_SUITE: ruby
JEKYLL_VERSION: "~> 4.0"
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- ps: Install-Product node $env:nodejs_version
- gem update --system --no-document
- bundle config --local path vendor/bundle
- sh script/bootstrap
build: off
branches:
only:
- master
before_test:
- node --version
- npm --version
- ruby -v
- gem -v
- bundle -v
test_script:
- sh script/cibuild
cache:
- vendor/bundle
- 'node_modules -> package.json' # invalidate cache if package.json changes
init:
- git config --global core.autocrlf true