dev-master
9999999-dev https://github.com/ZeedhiInc/jenkins-php-apiJenkins PHP API
MIT
by jenkins-khan
api jenkins
Wallogit.com
2017 © Pedro Peláez
Jenkins PHP API
Jenkins PHP API is a set of classes designed to interact with Jenkins CI using it's API., (*1)
Before anything, you need to instanciate the client :, (*2)
require_once('Autoload.php');
Jenkins_Autoloader::register();
$jenkins = new Jenkins('http://host.org:8080');
If your Jenkins need authentication, you need to pass and URL like this : 'http://user:token@host.org:8080'., (*3)
Here is some examples of how to use it :, (*4)
$job = $jenkins->getJob("dev2-pull");
var_dump($job->getColor());
//string(4) "blue"
$job = $jenkins->launchJob("clone-deploy");
$view = $jenkins->getView('madb_deploy');
foreach ($view->getJobs() as $job) {
var_dump($job->getName());
}
//string(13) "altlinux-pull"
//string(8) "dev-pull"
//string(9) "dev2-pull"
//string(11) "fedora-pull"
$job = $jenkins->getJob('dev2-pull');
foreach ($job->getBuilds() as $build) {
var_dump($build->getNumber());
var_dump($build->getResult());
}
//int(122)
//string(7) "SUCCESS"
//int(121)
//string(7) "FAILURE"
var_dump($jenkins->isAvailable());
//bool(true);
More information about Jenkins API could be found here, (*5)
Jenkins PHP API
MIT
api jenkins