jenkins_api_client
jenkins_api_client copied to clipboard
Ruby Client libraries for communicating with Jenkins Remote Access API
To fix an issue with the `\e` character which seems like an issue with `JSON.parse` so figured this is a simpler solution (we can discuss alternatives i.e. if we should...
It seems like are significant changes in master since the last release, which was years ago. Would it be possible to cut a new gem version based on the current...
It no longer exists in uri 0.11
Hi, I am using your gem and i get the following error: ``` [2021-11-02T20:38:03] ERROR service_logger: Error occurred while trying to start Jenkins job: ********** : Error code 204 [2021-11-02T20:38:03]...
I have migrated to jenkins 2.249 and this started happening. (at the bottom I confirm that it is an issue with the library using jenkins_api_client 1.5.3) ``` E, [2020-10-14T17:46:29.384574 #4]...
After Jenkins-LTS 2.176.3, jenkins_api_client module had been failed because of CSRF protection token. This patch enables to handle the jenkins session, so it can be re-enabling.
Added new endpoints to get all items from the queue and build details for a specified build And a couple of bug fixes - - Disabling cert check when none...
My attempt at resolving https://github.com/arangamani/jenkins_api_client/issues/304 and https://github.com/arangamani/jenkins_api_client/issues/308 Got unit tests to pass on my local machine but couldn't get functional testing working.
``` require 'jenkins_api_client' @client = JenkinsApi::Client.new(:server_ip => 'xx.xxx.xx.xx', :username => 'xxxxxxxxx', :password => 'xxxxxxx') # The following call will return all jobs matching 'Testjob' puts @client.job.list("^Testjob") ``` And it keeps...