Sha256: a3e5ee008f90adc6e4d44e906a1e5c0aea5d225575809a16c8e0bd66edb7ee72

Contents?: true

Size: 501 Bytes

Versions: 1

Compression:

Stored size: 501 Bytes

Contents

#!/usr/bin/env groovy

dockerComposePipeline(
    commands: [
        'bundle exec rake coverage',
        'bundle exec rake rubocop',
        'bundle exec rake bundle:audit',
        'bundle exec rake gem'
    ],
    artifacts: [
        junit: 'artifacts/rspec/**/*.xml',
        html : [
            'Code Coverage': 'artifacts/rcov',
            'RuboCop'      : 'artifacts/rubocop'
        ],
        raw  : [
            'artifacts/**/*.gem',
            'artifacts/**/*.json'
        ]
    ]
)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
berkeley_library-logging-0.2.0 Jenkinsfile