Created
March 1, 2025 14:49
-
-
Save pragmatictesters/149600e0906b87d6c3bf1f6d0ddca5ac to your computer and use it in GitHub Desktop.
Jenkins pipeline to run on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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