4

I am trying to automate my Eclipse UI testing using Jenkins. I have a Jenkins Windows slave where I have installed Eclipse RCPTT IDE. In Jenkins I am using this script with my information.

I have also narrowed it down to just run java -jar C:/Users/myUsername/Desktop/rcptt/plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar

However, all I see in my Jenkins console is just a spinning icon.

When I run this from the command line on my Jenkins Windows slave, I see that my instance of RCPTT is opening correctly.

Has anyone configured their Jenkins to run RCPTT? Have you seen this issue?

greg-449
  • 109,219
  • 232
  • 102
  • 145
Chris Bolton
  • 2,162
  • 4
  • 36
  • 75

1 Answers1

0

As mentioned in this user guide, you can use the Maven plug-in to automate the RCPTT test execution during Maven build:

<groupId>org.eclipse.rcptt</groupId>
<artifactId>rcptt-maven-plugin</artifactId>

Then, you can configure Jenkins to trigger the Maven command.

Lii
  • 11,553
  • 8
  • 64
  • 88
Bằng
  • 557
  • 6
  • 24