Skip to content

Commit

Permalink
Merge pull request #15086 from keithc-ca/url
Browse files Browse the repository at this point in the history
Allow jenkins to specify github URL prefix
  • Loading branch information
AdamBrousseau committed May 18, 2022
2 parents eb81bd7 + d17ae19 commit c3cf96c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions buildenv/jenkins/jobs/infrastructure/copyrightCheck.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2017, 2021 IBM Corp. and others
* Copyright (c) 2017, 2022 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -21,7 +21,8 @@
*******************************************************************************/

Boolean FAIL = false
String SRC_REPO = 'https://github.com/${ghprbGhRepository}.git'
String SRC_HOST = params.SRC_HOST ?: 'https://github.com/'
String SRC_REPO = "${SRC_HOST}${ghprbGhRepository}.git"
def BAD_FILES = []
String HASHES = '###################################'

Expand Down
5 changes: 3 additions & 2 deletions buildenv/jenkins/jobs/infrastructure/lineEndingsCheck.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2017, 2021 IBM Corp. and others
* Copyright (c) 2017, 2022 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -21,7 +21,8 @@
*******************************************************************************/

Boolean FAIL = false
String SRC_REPO = 'https://github.com/${ghprbGhRepository}.git'
String SRC_HOST = params.SRC_HOST ?: 'https://github.com/'
String SRC_REPO = "${SRC_HOST}${ghprbGhRepository}.git"
def BAD_FILES = []
String HASHES = '###################################'

Expand Down
5 changes: 3 additions & 2 deletions buildenv/jenkins/jobs/infrastructure/signedOffByCheck.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2018, 2020 IBM Corp. and others
* Copyright (c) 2018, 2022 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -21,7 +21,8 @@
*******************************************************************************/

def FAIL = false
def SRC_REPO = 'https://github.com/${ghprbGhRepository}.git'
String SRC_HOST = params.SRC_HOST ?: 'https://github.com/'
String SRC_REPO = "${SRC_HOST}${ghprbGhRepository}.git"
def HASHES = '###################################'
def COMMITS = []
def BAD_COMMITS = []
Expand Down

0 comments on commit c3cf96c

Please sign in to comment.