Sha256: 67bb729473902385b846a4684c19f88b00d82c32d39ebc85da3d6fe28d588b45

Contents?: true

Size: 810 Bytes

Versions: 1

Compression:

Stored size: 810 Bytes

Contents

kind: pipeline
type: docker
name: test

steps:
  - name: Test Ruby
    image: ruby:3.0.1
    commands:
      - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > "${HOME}/bin/cc-test-reporter"
      - chmod +x "${HOME}/bin/cc-test-reporter"
      - bundle -v
      - bundle install
      - cc-test-reporter before-build
      - bundle exec rake
      - cc-test-reporter after-build --exit-code $? -t simplecov
    environment:
      CC_TEST_REPORTER_ID: dfac1bcda9df0ca61c7debeb31d56eeaee8f1388ea1d7487993dddfbae1ca282

  - name: Upload to RubyGems
    image: ruby:3.0.1
    commands:
      - gem build apple_dep_client.gemspec
      - gem push -V *.gem
    environment:
      GEM_HOST_API_KEY:
        from_secret: RUBYGEMS_API_KEY
    when:
      event:
        - tag

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
apple_dep_client-2.2.3 .drone.yml