File: appveyor.yml

package info (click to toggle)
ruby-rspec-rails 8.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,804 kB
  • sloc: ruby: 10,881; sh: 198; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 957 bytes parent folder | download | duplicates (2)
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
# This file was generated on 2019-12-18T14:01:39+00:00 from the rspec-dev repo.
# DO NOT modify it by hand as your changes will get lost the next time it is generated.

version: "{build}"

# This will build all PRs targeting matching branches.
# Without this, each PR builds twice -- once for the PR branch HEAD,
# and once for the merge commit that github creates for each mergeable PR.
branches:
  only:
    - main
    - /.*-maintenance$/

# Disable normal Windows builds in favor of our test script.
build: off

cache:
  - vendor/bundle

install:
  - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
  - bundle config --local path vendor/bundle
  - bundle install
  - cinst ansicon

before_test:
  - ruby --version
  - gem --version
  - bundle --version

test_script:
  - bundle exec rspec --backtrace

environment:
  matrix:
    - ruby_version: 23-x64
    - ruby_version: 24-x64
    - ruby_version: 25-x64
    - ruby_version: 26-x64
    - ruby_version: 27-x64