From 024f6f4c68ea0affa211f45bda1dc5691d6db51f Mon Sep 17 00:00:00 2001
From: Mattia Mancini <mancini@astron.nl>
Date: Mon, 15 Oct 2018 07:03:48 +0000
Subject: [PATCH] OSB-28: creating test build and deploy jenkins files

---
 .gitattributes                                |  1 +
 .../DBInterface/test_deploy.Jenkinsfile       | 21 +++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 SubSystems/MonitorTest/DBInterface/test_deploy.Jenkinsfile

diff --git a/.gitattributes b/.gitattributes
index 5dd068aa708..b83e313e077 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -5427,6 +5427,7 @@ SubSystems/LCU_MAC/doc/package.dox -text
 SubSystems/LTAIngest/CMakeLists.txt -text
 SubSystems/LTAIngest/doc/package.dox -text
 SubSystems/MCU_MAC/doc/package.dox -text
+SubSystems/MonitorTest/DBInterface/test_deploy.Jenkinsfile -text
 SubSystems/Offline/doc/package.dox -text
 SubSystems/Online_Cobalt/doc/package.dox -text
 SubSystems/Online_Cobalt/install/init.d-qpidd.sh eol=lf
diff --git a/SubSystems/MonitorTest/DBInterface/test_deploy.Jenkinsfile b/SubSystems/MonitorTest/DBInterface/test_deploy.Jenkinsfile
new file mode 100644
index 00000000000..b9822500b1a
--- /dev/null
+++ b/SubSystems/MonitorTest/DBInterface/test_deploy.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