Sha256: cc0bb58c45c9c386e498055e24ebde2fc85a8201c168516e82cb3caed14197d2

Contents?: true

Size: 756 Bytes

Versions: 2

Compression:

Stored size: 756 Bytes

Contents

version: '{build}-{branch}'
install:
  - set PATH=C:\Ruby25-x64\bin;%PATH%
  - ruby --version
  - gem --version
  - bundle package --all
build: off
test_script:
  - ps: |
      $path = $env:Path
      $rubypaths = ls -Path C:\Ruby*\bin
      foreach ($rubypath in $rubypaths) {
        $env:Path = "$rubypath;" + $path
        ruby -e "abort unless RUBY_VERSION > '2.3'"
        if ($LASTEXITCODE -gt 0) {
          continue
        }

        echo "################################ $rubypath ################################"
        ruby --version
        gem --version
        bundle package --all
        bundle install --local -j4
        bundle exec rspec
        if ($LASTEXITCODE -gt 0) {
          exit 1
        }
      }
      $env:Path = $path

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fspath-3.1.2 .appveyor.yml
fspath-3.1.1 .appveyor.yml