Skip to content

Instantly share code, notes, and snippets.

@jovemfelix
Created December 9, 2020 16:52
Show Gist options
  • Select an option

  • Save jovemfelix/370f4091dddea9fb2db8fb124ef20d49 to your computer and use it in GitHub Desktop.

Select an option

Save jovemfelix/370f4091dddea9fb2db8fb124ef20d49 to your computer and use it in GitHub Desktop.
apiVersion: build.openshift.io/v1
kind: BuildConfig
metadata:
labels:
name: my-first-pipeline-maven-version
name: my-first-pipeline-maven-version
spec:
source:
type: None
strategy:
jenkinsPipelineStrategy:
jenkinsfile: |-
pipeline {
agent {
label 'maven'
}
stages {
stage('maven version') {
steps {
sh('mvn --version')
}
}
}
}
type: JenkinsPipeline
triggers: []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment