From 8fb9ba6e69362a2a17583d0398d7bd1562844a61 Mon Sep 17 00:00:00 2001 From: Auke Klazema <klazema@astron.nl> Date: Tue, 7 May 2019 10:36:04 +0000 Subject: [PATCH] SW-394: Create Initial Jenkinsfile for RAServices --- .gitattributes | 1 + SubSystems/RAServices/Jenkinsfile | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 SubSystems/RAServices/Jenkinsfile diff --git a/.gitattributes b/.gitattributes index a86b4f2bf70..f5950b4e844 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5537,6 +5537,7 @@ SubSystems/Online_Cobalt/validation/validate eol=lf SubSystems/Online_Cobalt/validation/validation_utils.sh -text SubSystems/Online_OutputProc/doc/package.dox -text SubSystems/RAServices/CMakeLists.txt -text +SubSystems/RAServices/Jenkinsfile -text SubSystems/RAServices/RAServices.ini -text SubSystems/RAServices/doc/package.dox -text SubSystems/SAS_OTDB/doc/package.dox -text diff --git a/SubSystems/RAServices/Jenkinsfile b/SubSystems/RAServices/Jenkinsfile new file mode 100644 index 00000000000..b9822500b1a --- /dev/null +++ b/SubSystems/RAServices/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} -- GitLab