https://github.com/jekyll/jekyll
Raw File
Tip revision: 42d92d1860adfc8e2db0a1ec82e6bd7bf7c62cdd authored by Parker Moore on 30 January 2023, 02:30:22 UTC
Merge pull request #9282 from jekyll/release-3-9-3
Tip revision: 42d92d1
appveyor.yml
version: "{build}"

clone_depth: 10

branches:
  only:
    - master
    - themes
    - /.*-stable/

build: off

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

environment:
  BUNDLE_WITHOUT: "benchmark:development"
  matrix:
    - RUBY_FOLDER_VER: "26"
      TZINFO_VERSION: "~> 1.2"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "26"
      TZINFO_VERSION: "~> 2.0"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "26"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "25"
      TEST_SUITE: "test"
    - RUBY_FOLDER_VER: "26"
      TEST_SUITE: "default-site"
    - RUBY_FOLDER_VER: "26"
      TEST_SUITE: "profile-docs"
    - RUBY_FOLDER_VER: "26"
      TZINFO_VERSION: "~> 1.2"
      TEST_SUITE: "cucumber"
    - RUBY_FOLDER_VER: "26"
      TZINFO_VERSION: "~> 2.0"
      TEST_SUITE: "cucumber"

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