Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Created March 1, 2025 14:49
Show Gist options
  • Save pragmatictesters/149600e0906b87d6c3bf1f6d0ddca5ac to your computer and use it in GitHub Desktop.
Save pragmatictesters/149600e0906b87d6c3bf1f6d0ddca5ac to your computer and use it in GitHub Desktop.
Jenkins pipeline to run on Windows
pipeline {
agent any // Runs on any available agent
stages {
stage('Checkout') {
steps {
git url: 'https://github.com/pragmatictesters/selenium-sauce-demo.git', branch: 'main'
}
}
stage('Build') {
steps {
bat 'mvn clean install'
}
}
stage('Run Selenium Tests') {
steps {
bat 'mvn test'
}
}
stage('Publish Reports') {
steps {
junit '**/target/surefire-reports/*.xml' // JUnit reports
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
post {
always {
echo 'Pipeline Execution Completed'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment