Sha256: 4ea7dff3c10d2421c001eb8a1c49428b4e42575b437f4acdd868098586467d3e

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

init:
  - SET PATH=C:/Ruby%ruby_version%/bin;%PATH%
  - SET RAKEOPT=-rdevkit
install:
  - ps: |
      if ($env:ruby_version -like "*head*") {
        $(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-$env:ruby_version.exe", "$pwd/ruby-setup.exe")
        cmd /c ruby-setup.exe /verysilent /dir=C:/Ruby$env:ruby_version
      }
  - ruby --version
  - gem --version
  - ps: |
        if ($env:BROKEN_SSL -eq "true") {
          $(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt', "$env:TMP/ca-bundle.crt")
          $env:SSL_CERT_FILE = "$env:TMP/ca-bundle.crt"
          Write-Host "Using SSL CA list $env:SSL_CERT_FILE" -foreground Green
        }
  - gem install bundler --conservative
  - bundle config force_ruby_platform true
  - bundle install
build_script:
  - bundle exec rake compile
test_script:
  - bundle exec rake travis
environment:
  matrix:
    - ruby_version: "head-x64"
    - ruby_version: "200"
      BROKEN_SSL: true
    - ruby_version: "21-x64"
      BROKEN_SSL: true
    - ruby_version: "22"
      BROKEN_SSL: true
    - ruby_version: "23-x64"
      BROKEN_SSL: true
    - ruby_version: "24"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
libusb-0.6.4 appveyor.yml
libusb-0.6.4-x86_64-linux appveyor.yml
libusb-0.6.4-x86-linux appveyor.yml
libusb-0.6.4-x64-mingw32 appveyor.yml
libusb-0.6.4-x86-mingw32 appveyor.yml