Sha256: a470f0afc073d4e17b6f1d9958933f012af5ec77c03cdd5864408b2638f70c2b

Contents?: true

Size: 767 Bytes

Versions: 3

Compression:

Stored size: 767 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.5'

- script: gem install bundler
  displayName: 'Install bundler'

- 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: bundle exec parallel_test test/unit/ -n 4
  displayName: 'bundle exec parallel_test test/unit/ -n 4'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
appium_lib_core-3.1.1 azure-pipelines.yml
appium_lib_core-3.1.0 azure-pipelines.yml
appium_lib_core-3.0.4 azure-pipelines.yml