Sha256: a329acd68ebd7bae38b7c653cc3b9f48bf5ae7ede7222dbd297085621b068710

Contents?: true

Size: 488 Bytes

Versions: 9

Compression:

Stored size: 488 Bytes

Contents

default:
  image: ruby:3.0
    
stages:          # List of stages for jobs, and their order of execution
  - test

unit-test:  
  tags: 
    - allq
  stage: test
  script:
    - docker-compose down || true
    - docker-compose up -d || true
    - sleep 10
    - ruby -v
    - bundle install
    - bundle exec rake test TEST=test/allq/back_burner_test.rb DEBUG=true
    - bundle exec rake test TEST=test/allq/worker_test.rb DEBUG=true
  after_script:
    - docker-compose down || true
    

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
backburner-allq-1.0.50 .gitlab-ci.yml
backburner-allq-1.0.49 .gitlab-ci.yml
backburner-allq-1.0.48 .gitlab-ci.yml
backburner-allq-1.0.47 .gitlab-ci.yml
backburner-allq-1.0.46 .gitlab-ci.yml
backburner-allq-1.0.45 .gitlab-ci.yml
backburner-allq-1.0.44 .gitlab-ci.yml
backburner-allq-1.0.40 .gitlab-ci.yml
backburner-allq-1.0.39 .gitlab-ci.yml