Sha256: f2d07bea68fcd663e66cd1b4afefe4a9202be6ef55f3754ba88a5e15675a27ad

Contents?: true

Size: 793 Bytes

Versions: 1

Compression:

Stored size: 793 Bytes

Contents

# Ruby
# Package your Ruby project.
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
pool:
  vmImage: 'vs2017-win2016'

variables:
  UNIT_TEST: true

steps:
- task: UseRubyVersion@0
  inputs:
    versionSpec: '2.4.3'

- script: gem install bundler ffi:1.10.0
  displayName: 'Gem install bundler and ffi for Windows environment'

- script: bundle install --retry=3 --jobs=4
  displayName: 'Call bundle install'

- script: gem uninstall --force eventmachine && gem install eventmachine --platform ruby
  displayName: 'bundle re-install eventmachine for Windows because of Windows environment issue'

- script: parallel_test test/unit/ -n 4
  displayName: 'Run parallel_test test/unit/ -n 4'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
appium_lib_core-3.1.2 azure-pipelines.yml