forked from chef/winrm-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (31 loc) · 937 Bytes
/
appveyor.yml
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
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
winrm_user: test_user
winrm_password: Pass@word1
matrix:
- ruby_version: "24"
winrm_endpoint: http://localhost:5985/wsman
clone_folder: c:\projects\winrm-fs
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: bundler --version
build_script:
- bundle install || bundle install || bundle install
test_script:
- SET SPEC_OPTS=--format progress
- bundle exec rake integration