Sha256: 1c3652faeec828c9b25e348e236289f5e4f4746482e5864c52417f3e7cd2bad0

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

version: "master-{build}"

os: Windows Server 2012 R2
platform:
  - x64

environment:
  winrm_user: test_user
  winrm_password: Pass@word1

  matrix:
    - ruby_version: "21"
      winrm_endpoint: http://localhost:5985/wsman

clone_folder: c:\projects\winrm-elevated
clone_depth: 1
branches:
  only:
    - master

install:
  - ps: net user /add $env:winrm_user $env:winrm_password
  - ps: net localgroup administrators $env:winrm_user /add
  - ps: winrm set winrm/config/client/auth '@{Basic="true"}'
  - ps: winrm set winrm/config/service/auth '@{Basic="true"}'
  - ps: winrm set winrm/config/service '@{AllowUnencrypted="true"}'
  - ps: $env:PATH="C:\Ruby$env:ruby_version\bin;$env:PATH"
  - ps: Write-Host $env:PATH
  - ps: ruby --version
  - ps: gem --version
  - ps: gem install bundler --quiet --no-ri --no-rdoc
  - ps: bundler --version

build_script:
  - bundle install || bundle install || bundle install

test_script:
  - SET SPEC_OPTS=--format progress
  - bundle exec rake integration

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
winrm-elevated-1.0.0 appveyor.yml