Hi All,
I am new to Gatling, and want to integrate it to Jenkins to do performance testing for our project. Just started with running the “gatling-maven-plugin-demo-master” sample. I am facing some issues while running it. These are the steps i did,
-
Created a Maven project in Jenkins and placed the folder “gatling-maven-plugin-demo-master” in the workspace of the project
-
In post-build actions, enabled Gatling load simulation tracking
-
When i build the project, this is the error i get towards the end
[INFO] Installing C:\Program Files\Jenkins\workspace\Hello\gatling-maven-plugin-demo-master\target\gatling-maven-plugin-demo-2.0.0-M3a.jar to C:\WINDOWS\system32\config\systemprofile\.m2\repository\io\gatling\gatling-maven-plugin-demo\2.0.0-M3a\gatling-maven-plugin-demo-2.0.0-M3a.jar
[INFO] Installing C:\Program Files\Jenkins\workspace\Hello\gatling-maven-plugin-demo-master\pom_new.xml to C:\WINDOWS\system32\config\systemprofile\.m2\repository\io\gatling\gatling-maven-plugin-demo\2.0.0-M3a\gatling-maven-plugin-demo-2.0.0-M3a.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 24:52 min
[INFO] Finished at: 2014-05-27T12:32:22+05:30
[INFO] Final Memory: 11M/27M
[INFO] ------------------------------------------------------------------------
Waiting for Jenkins to finish collecting data
[JENKINS] Archiving C:\Program Files\Jenkins\workspace\Hello\gatling-maven-plugin-demo-master\pom_new.xml to io.gatling/gatling-maven-plugin-demo/2.0.0-M3a/gatling-maven-plugin-demo-2.0.0-M3a.pom
[JENKINS] Archiving C:\Program Files\Jenkins\workspace\Hello\gatling-maven-plugin-demo-master\target\gatling-maven-plugin-demo-2.0.0-M3a.jar to io.gatling/gatling-maven-plugin-demo/2.0.0-M3a/gatling-maven-plugin-demo-2.0.0-M3a.jar
channel stopped
Archiving Gatling reports...
ERROR: Publisher com.excilys.ebi.gatling.jenkins.GatlingPublisher aborted due to exception
[java.lang.IllegalArgumentException](http://stacktrace.jenkins-ci.org/search?query=java.lang.IllegalArgumentException): Could not find a Gatling report in results folder.
at [com.excilys.ebi.gatling.jenkins.GatlingPublisher.saveFullReports(GatlingPublisher.java:97)](http://stacktrace.jenkins-ci.org/search/?query=com.excilys.ebi.gatling.jenkins.GatlingPublisher.saveFullReports&entity=method)
at [com.excilys.ebi.gatling.jenkins.GatlingPublisher.perform(GatlingPublisher.java:65)](http://stacktrace.jenkins-ci.org/search/?query=com.excilys.ebi.gatling.jenkins.GatlingPublisher.perform&entity=method)
at [hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:45)](http://stacktrace.jenkins-ci.org/search/?query=hudson.tasks.BuildStepMonitor$3.perform&entity=method)
at [hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:745)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.perform&entity=method)
at [hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:709)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps&entity=method)
at [hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.post2(MavenModuleSetBuild.java:1040)](http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.post2&entity=method)
at [hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:658)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.post&entity=method)
at [hudson.model.Run.execute(Run.java:1731)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Run.execute&entity=method)
at [hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:529)](http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.MavenModuleSetBuild.run&entity=method)
at [hudson.model.ResourceController.execute(ResourceController.java:88)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.ResourceController.execute&entity=method)
at [hudson.model.Executor.run(Executor.java:231)](http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Executor.run&entity=method)
Finished: FAILURE
I am not understanding what is happening over here. I have given proper values for Gatling configurations in the pom file. But it is not even executing the scala which has the recorded scenario.
C:\work\Softwares\gatling-maven-plugin-demo-master\src\test\resourcesC:\work\Softwares\gatling-maven-plugin-demo-master\src\test\resources\data
C:\work\Softwares\gatling-maven-plugin-demo-master\results
C:\work\Softwares\gatling-maven-plugin-demo-master\src\test\resources\request-bodies
C:\work\Softwares\gatling-maven-plugin-demo-master\src\test\scala
C:\work\Softwares\gatling-maven-plugin-demo-master\src\test\scala\basic\BasicExampleSimulation.scala
advanced/*.scala
Can somebody help me to find what is missing here ?