Hello,
I am working with trying to develop a Jenkins pipeline that will be able to
run the test cases from a provided github repository. I am new to Jenkins
and to say my experience is limited is an understatement.
I followed a tutorial by Corilogix on running the test cases and I believe
it will function, however I have several questions,
1. Will the test case data always be published as an XML file?
2. Is there a way to automate / track where the XML file is stored?
The goal of the pipeline is to produce the data from running a test case so
the next stage in the plugin we are developing can use the data.
pipeline{
agent any
stages{
stage('Build'){
steps{
git 'INSERT REPO LINK'
bat '.\mvnw clean compile'
}
}
stage('Test'){
steps{
bat '.\mvnw test' //Will be using the Maven Wrapper to run the Test
Phases
}
}
}
}
--
You received this message because you are subscribed to the Google Groups
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-dev/1b8894da-e6a2-4d9d-b5e8-934b1e5bf083n%40googlegroups.com.