Sha256: 2059e8eec2bed7e9995d5746b61e46c0c89841a0137f9f07964179ab418d553e

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

version: 1.0.{build}-{branch}

image:
  # need an image for Win10+ for WinAppDriver
  - Visual Studio 2017

cache:
  - C:\Users\appveyor\AppData\Roaming\npm
  - vendor/bundle
  # Chocolatey MSIs - out of luck!

install:
  - set PATH=C:\Ruby25-x64\bin;%PATH%
  # the bundle has stuff for mulitple profiles mixed together
  - bundle install
  # Chome, obviously but calling it out in case I make multiple profiles.
  - choco install googlechrome
  # This one's for iedriver.
  - reg import bin\ie.reg
  - npm install -g appium
  # Can't choco install WinAppDriver yet.
  # Also, am currently hardcoding version number. When there's a new Appium/
  # WinAppDriver pairing available this may break because the Appium will be
  # too new.
  - appveyor DownloadFile https://github.com/Microsoft/WinAppDriver/releases/download/v1.0/WindowsApplicationDriver.msi
  - msiexec /i WindowsApplicationDriver.msi /quiet /qn /norestart /log install.log
  # allow developer mode for non-UWP-stuffs including WinAppDriver
  - reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"

build: off

before_test:
  - ruby -v
  - gem -v
  - bundle -v
  - bundle info rubocop
  - npm -v
  - ver
  - dir

test_script:
  - bundle exec rspec

artifacts:
  - path: install.log
    name: WAD installer log

  - path: tmp\screenshots

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rutl-0.8.0 appveyor.yml