Skip to content

Commit

Permalink
test a simple Jenkinsfile
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <[email protected]>
  • Loading branch information
olamy committed Jun 13, 2024
1 parent f2714cc commit 0f3ab32
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!groovy

pipeline {
agent any
// save some io during the build
options { durabilityHint( 'PERFORMANCE_OPTIMIZED' ) }
stages {
stage( "Build Website" ) {
agent { node { label 'linux' } }
steps {
timeout( time: 120, unit: 'MINUTES' ) {
withMaven( maven: 'maven3', jdk: 'jdk17' ) {
sh "bash ./jetty-website.sh stage"
}
}
}
}
}
}
// vim: et:ts=2:sw=2:ft=groovy

0 comments on commit 0f3ab32

Please sign in to comment.