I have a rails server app running in Cloud66 and I want my Jenkins CI to start running a test every time there is a deploy in Cloud66.
Is it possible to do this? How?
Thanks!
Ok, I found out the solution!
So:
-
staging:
last_thing:
command: curl $JENKINS_URL/job/$JOB_NAME/build?token=$TOKEN_DEFINED_EARLIER
target: rails
execute: true
And that's it! Then you'll have an test execution triggered on deploy!