PHP code example of chbiel / jenkins-php-api

1. Go to this page and download the library: Download chbiel/jenkins-php-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

chbiel / jenkins-php-api example snippets


    $jenkins = new Jenkins('http://host.org:8080');

    $job = $jenkins->getJob("dev2-pull");
    var_dump($job->getColor());
    //string(4) "blue"

    $job = $jenkins->getJob("clone-deploy")->launch();

    $job = $jenkins->getJob("clone-deploy")->launchAndWait();

    $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);