https://github.com/jekyll/jekyll
Raw File
Tip revision: 177c1ca09e1be5f8a2924aed6c74bfa7d53079c5 authored by Pat Hawks on 13 August 2018, 18:11:58 UTC
Cache all the things!
Tip revision: 177c1ca
appveyor.yml
version: "{build}"

clone_depth: 10

branches:
  only:
    - master
    - themes

build: off

install:
  - SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
  - bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS% --clean --path vendor\bundle

environment:
  BUNDLE_WITHOUT: "benchmark:site:development"
  matrix:
    - RUBY_FOLDER_VER: "25"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "25"
      TEST_SUITE: "cucumber"
    - RUBY_FOLDER_VER: "25"
      TEST_SUITE: "default-site"
    - RUBY_FOLDER_VER: "25-x64"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "24"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "23"
      TEST_SUITE: "test"

test_script:
  - ruby --version
  - gem --version
  - bundler --version
  - bash ./script/cibuild

cache:
  # If one of the files after the right arrow changes, cache will be skipped
  - 'vendor\bundle -> appveyor.yml,Gemfile,jekyll.gemspec'
back to top