Sha256: ca8f8cfcff887220f05c5e39ec9a81c1c7c74cf0ecc86206e7701e11c20545a6
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
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 jobs: - template: ./ci-jobs/functional_test.yml - job: Run_unit_tests_on_Windows_environment pool: vmImage: 'vs2017-win2016' variables: UNIT_TEST: true steps: - task: UseRubyVersion@0 inputs: versionSpec: '2.5' - 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' - template: ./ci-jobs/functional/publish_test_result.yml parameters: xcodeVersion: 'Run_unit_tests_on_Windows_environment'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
appium_lib_core-3.2.0 | azure-pipelines.yml |
appium_lib_core-3.1.3 | azure-pipelines.yml |