diff options
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 61700662a..184f6930a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,8 +29,8 @@ def getGitRepoURL() { // env.JOB_NAME is e.g. vyos-build or vyos-1x and so on .... def isCustomBuild() { // GitHub organisation base URL - def gitURI = 'git@github.com:vyos/' + env.JOB_NAME - def httpURI = 'https://github.com/vyos/' + env.JOB_NAME + def gitURI = 'git@github.com:vyos/vyos-1x.git' + def httpURI = 'https://github.com/vyos/vyos-1x.git' return ! ((getGitRepoURL() == gitURI) || (getGitRepoURL() == httpURI)) } @@ -40,7 +40,7 @@ def setDescription() { // build up the main description text def description = "" - description += "<h2>Build VyOS ISO image</h2>" + description += "<h2>VyOS individual package build: vyos-1x</h2>" if (isCustomBuild()) { description += "<p style='border: 3px dashed red; width: 50%;'>" |