Sha256: 38d3aeb413575818216bdbff4a53a10c4a3d1fe5808f782d0a489d8282a68151

Contents?: true

Size: 628 Bytes

Versions: 8

Compression:

Stored size: 628 Bytes

Contents

pr:
  branches:
    include:
      - '*'

pool:
  vmImage: 'ubuntu-latest'

steps:
  - task: UseRubyVersion@0
    inputs:
      versionSpec: '>= 2.5'

  - script: |
      gem install bundler
      bundle update
      bundle install --retry=3 --jobs=4
    displayName: 'bundle install'

  - task: Bash@3
    displayName: 'Run tests'
    inputs:
      targetType: 'inline'
      script: |
        bundle exec rake

  - task: PublishTestResults@2
    inputs:
      testResultsFormat: 'JUnit'
      testResultsFiles: '**/TEST-*.xml'
      mergeTestResults: true
      failTaskOnFailedTests: true
      testRunTitle: 'Publish tests'

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fluent-plugin-newrelic-1.2.3 pr-pipeline.yml
fluent-plugin-newrelic-1.2.2 pr-pipeline.yml
fluent-plugin-newrelic-1.2.1 pr-pipeline.yml
fluent-plugin-newrelic-1.2.0 pr-pipeline.yml
fluent-plugin-newrelic-1.1.10 pr-pipeline.yml
fluent-plugin-newrelic-1.1.9 pr-pipeline.yml
fluent-plugin-newrelic-1.1.8 pr-pipeline.yml
fluent-plugin-newrelic-1.1.5 pr-pipeline.yml