Sha256: 31524eb55eea09e0f3741e8bbc1ca44e95fadbc3364b14a743ad5acd079f32d5

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

variables:
  password: $password
  client_id: $client_id
  client_secret: $client_secret

.zal_test:
  services:
    - docker:19.03.5-dind
  image: docker:19.03.5
  stage: test
  script:
    - apk add docker-compose
    - docker-compose version
    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
    - docker pull --quiet elgalu/selenium:3.141.59-p37 # Explicitly pull selenium image with working version
    - docker-compose up --abort-on-container-exit --exit-code-from test
  artifacts:
    paths:
      - tmp/ # Where video is stored
    reports:
      junit: logs/*.xml
    expire_in: 1 week
    when: always
  variables:
    BROWSER: chrome

test:
  image: ruby:2.7
  script:
    - export CHROME_VERSION="google-chrome-stable"
    - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
    - echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
    - apt-get update -qqy
    - apt-get -qqy install google-chrome-stable

    - bundle install
    - bundle exec rake leaps:create_poms
    - bundle exec rake spec

include:
  - template: Code-Quality.gitlab-ci.yml

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
leap_salesforce_ui-0.3.0 .gitlab-ci.yml