1

With the use of Jenkins Docker Plugin we can provision the slaves dynamically.

My need is to run UI tests on the automatically created slaves. Is that feasible? If yes, how can we achieve that?

UI tests are WindowTester test cases for eclipse based tool.

Anand
  • 2,239
  • 4
  • 32
  • 48

1 Answers1

0

I am doing same kind of stuff, On successful build we are running all automated test cases on windows machine.

In your Jenkins, you need to add Windows machine as a Slave machine.

Try below tutorial - https://wiki.jenkins.io/display/JENKINS/Step+by+step+guide+to+set+up+master+and+slave+machines+on+Windows

Once node is up and running then in your Job make sure you selected windows slave node.

enter image description here

Rohan J Mohite
  • 2,283
  • 10
  • 19
  • This is simple & straight forward general case. My scenario is different. I am provisioning Jenkins slaves automatically on runtime using Docker Plugin. – Anand Dec 22 '17 at 10:47
  • This might help you. https://engineering.riotgames.com/news/jenkins-ephemeral-docker-tutorial – Rohan J Mohite Dec 22 '17 at 11:37