Skip to content

Commit

Permalink
~ experimental: jenkins pipeline for home server #1
Browse files Browse the repository at this point in the history
  • Loading branch information
kasisoft committed Aug 20, 2024
1 parent 24d2aa0 commit 8abd321
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
pipeline {
agent any
tools {
}
environment {
}
stages {
stage('Initialize') {
steps {
sh 'echo "PATH = ${PATH}"'
}
}
stage('Build') {
steps {
}
}
stage('Testing') {
steps {
}
}
stage('SonarQube Analysis') {
steps {
// properties such as sonar.host.url and sonar.login are configured in the m2 settings.xml for this profile
// sh 'mvn clean verify -Psonar -Dsonar.projectKey=kcl'
}
}
}
}

0 comments on commit 8abd321

Please sign in to comment.