Sha256: f8f7c56e665220aa4c429e8693397a992b644a125806e67d9f3a85f1b3455826

Contents?: true

Size: 737 Bytes

Versions: 12

Compression:

Stored size: 737 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'

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

12 entries across 12 versions & 1 rubygems

Version Path
appium_lib_core-3.0.3 azure-pipelines.yml
appium_lib_core-3.0.2 azure-pipelines.yml
appium_lib_core-3.0.1 azure-pipelines.yml
appium_lib_core-3.0.0 azure-pipelines.yml
appium_lib_core-2.3.4 azure-pipelines.yml
appium_lib_core-2.3.3 azure-pipelines.yml
appium_lib_core-2.3.2 azure-pipelines.yml
appium_lib_core-2.3.1 azure-pipelines.yml
appium_lib_core-2.3.0 azure-pipelines.yml
appium_lib_core-2.2.2 azure-pipelines.yml
appium_lib_core-2.2.1 azure-pipelines.yml
appium_lib_core-2.2.0 azure-pipelines.yml