From 44f22f08d329314f77d297f8e22f53a44959431a Mon Sep 17 00:00:00 2001 From: Alexander Noskov Date: Tue, 18 Jun 2019 11:44:19 -0500 Subject: [PATCH] Move Airship Seaworthy pipeline to the folder. It is more clear when all pipelines are in their directories. Change-Id: I6d1098b8c478214b378fc34334f93355e623cb87 --- doc/source/seaworthy.rst | 2 +- tools/gate/{ => seaworthy}/Jenkinsfile | 0 tools/gate/{ => seaworthy}/seed.groovy | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename tools/gate/{ => seaworthy}/Jenkinsfile (100%) rename tools/gate/{ => seaworthy}/seed.groovy (95%) diff --git a/doc/source/seaworthy.rst b/doc/source/seaworthy.rst index c0781f52d..53bd006c4 100644 --- a/doc/source/seaworthy.rst +++ b/doc/source/seaworthy.rst @@ -15,7 +15,7 @@ Airship Seaworthy pipeline automates deployment flow documented in `Site Authoring and Deployment Guide `__. The pipeline is implemented as Jenkins Pipeline (Groovy), see code for the pipeline at -`Jenkinsfile `__. +`Jenkinsfile `__. Versions -------- diff --git a/tools/gate/Jenkinsfile b/tools/gate/seaworthy/Jenkinsfile similarity index 100% rename from tools/gate/Jenkinsfile rename to tools/gate/seaworthy/Jenkinsfile diff --git a/tools/gate/seed.groovy b/tools/gate/seaworthy/seed.groovy similarity index 95% rename from tools/gate/seed.groovy rename to tools/gate/seaworthy/seed.groovy index 8192589af..84c8c553f 100644 --- a/tools/gate/seed.groovy +++ b/tools/gate/seaworthy/seed.groovy @@ -1,5 +1,5 @@ -pipelineJob('seaworthy') { +pipelineJob('Seaworthy') { displayName('Airship Seaworthy') description('Bare-metal continuous deployment pipeline') @@ -78,7 +78,7 @@ pipelineJob('seaworthy') { definition { cps { - script(readFileFromWorkspace("tools/gate/Jenkinsfile")) + script(readFileFromWorkspace("tools/gate/seaworthy/Jenkinsfile")) sandbox() } }