Skip to content

Instantly share code, notes, and snippets.

View dmclean62's full-sized avatar

Donald McLean dmclean62

  • Pennsylvania, USA
View GitHub Profile
Triggered by <a href="https://hostname/OED_DSB/prompt/merge_requests/1" target="_blank">GitLab Merge Request #1</a>: OED_DSB/PROMPT-49 => master
Checking out git git@hostname:OED_DSB/prompt.git into /local/jenkins/workspace/DSB/PROMPT Change Integration@script to read Jenkinsfile.ci
using credential dsb_service_ssh
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url git@hostname:OED_DSB/prompt.git # timeout=10
Fetching upstream changes from git@hostname:OED_DSB/prompt.git
> git --version # timeout=10
using GIT_SSH to set credentials SSH key for dsb_service
> git fetch --tags --progress git@hostname:OED_DSB/prompt.git refs/changes/*:refs/changes/* # timeout=10
Jul 30, 2020 7:12:48 PM INFO com.dabsquared.gitlabjenkins.webhook.GitLabWebHook getDynamic
WebHook called with url: /project/DSB/PROMPT%20Change%20Integration/project/Prompt
Jul 30, 2020 7:12:48 PM FINE com.dabsquared.gitlabjenkins.webhook.build.PushBuildAction
Push: {
"object_kind" : "push",
"event_name" : "push",
"before" : "406c22dda14cd411d04bb77bec329a452167841c",
/**
* @file Jenkinsfile.ci
* @brief Jenkins pipeline build script for change integration builds
*/
// load helper library installed in jenkins
// NOTE: This library is loaded from the git repo ssh://gerrit/dsbjenkins.git
// To peg to a particular tag of that repository, use @<tag name>
@Library('[email protected]')
def dj = new edu.stsci.dsb.jenkins.utilities()
Triggered by <a href="https://hostname/OED_DSB/prompt/merge_requests/1" target="_blank">GitLab Merge Request #1</a>: OED_DSB/PROMPT-49 => master
Checking out git https://hostname/OED_DSB/prompt.git into /local/jenkins/workspace/DSB/PROMPT Change Integration@script to read Jenkinsfile.ci
using credential adb48264-2c47-4538-96ee-238ed1de337b
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://grit.stsci.edu/OED_DSB/prompt.git # timeout=10
Fetching upstream changes from https://grit.stsci.edu/OED_DSB/prompt.git
> git --version # timeout=10
using GIT_ASKPASS to set credentials
> git fetch --tags --progress https://grit.stsci.edu/OED_DSB/prompt.git refs/changes/*:refs/changes/* # timeout=10
<?xml version='1.1' encoding='UTF-8'?>
<org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject plugin="[email protected]">
  <actions/>
  <description></description>
  <properties>
    <org.jenkinsci.plugins.pipeline.modeldefinition.config.FolderConfig plugin="[email protected]">
      <dockerLabel></dockerLabel>
      <registry plugin="[email protected]"/>
    </org.jenkinsci.plugins.pipeline.modeldefinition.config.FolderConfig>
  </properties>
@dmclean62
dmclean62 / console.txt
Created June 11, 2020 18:20
Full console output
Console Output
Branch indexing
Querying the current revision of merge request #1...
Current revision of merge request #1 is 41c7b3f9e537981e09fc68efc4b8c226d4d7da92
Checking out git https://<hostname>/OED_DSB/AEI.git into /local/jenkins/workspace/DSB_Test_Area_dmclean-aei_MR-1@script to read Jenkinsfile.cd
using credential adb48264-2c47-4538-96ee-238ed1de337b
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://<hostname>/OED_DSB/AEI.git
@dmclean62
dmclean62 / Jenkinsfile.cd
Created June 11, 2020 18:06
My Jenkins pipeline
#!groovy
// Load the dsbjenkins library for some Jenkins pipeline utilities
@Library('[email protected]') _
// Start the pipeline
pipeline {
    // Run this pipeline in the dmsbuildsys docker agent
    agent { label 'DMS-2019.2-DMSBUILDSYS' }