Sha256: 29370591542ac65c087e539ce0e5b7bd021154797751e677733ab80965b1aeec

Contents?: true

Size: 281 Bytes

Versions: 3

Compression:

Stored size: 281 Bytes

Contents

#! /usr/bin/env groovy

pipeline {
  agent { label 'docker' }

  stages {
    stage('Build') {
      steps {
        sh 'docker build -t inst-jobs-autoscaling .'
      }
    }
    stage('Test') {
      steps {
        sh 'docker run --rm inst-jobs-autoscaling'
      }
    }
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
inst-jobs-autoscaling-2.1.1 Jenkinsfile
inst-jobs-autoscaling-2.1.0 Jenkinsfile
inst-jobs-autoscaling-2.0.0 Jenkinsfile