This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!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' } |