Sha256: 3fff1395192edbf31fb90bc133d348b82fa35e81ee932cfe342057e2c289ff10

Contents?: true

Size: 857 Bytes

Versions: 2

Compression:

Stored size: 857 Bytes

Contents

steps:
- task: NodeTool@0
  inputs:
    versionSpec: 10.x
  displayName: Install Node 10.x
- script: npm install -g appium@${APPIUM_VERSION}
  displayName: Install appium beta
- script: npm install -g mjpeg-consumer
  displayName: Install MJPEG Consumer
- script: npm list --depth 2 -g || echo 'ok'
  displayName: Installed node dependencies
- task: UseRubyVersion@0
  inputs:
    versionSpec: '2.4' # so far, bundler does not work over 2.5 since it raises openssl error
- script: |
    mkdir -p test/report
    nohup appium --relaxed-security --log-timestamp --log-no-colors > test/report/appium.out 2>&1 &
  displayName: Run Appium in background
  env:
    JAVA_HOME: $(JAVA_HOME_11_X64)
    PATH: $(JAVA_HOME_11_X64)/bin:$(PATH)
- script: |
    gem install bundler;
    bundle install --retry=3 --jobs=4 --path vendor/bundle;
  displayName: Install Gems

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appium_lib_core-4.0.0 ci-jobs/functional/run_appium.yml
appium_lib_core-3.11.1 ci-jobs/functional/run_appium.yml