diff --git a/.gitattributes b/.gitattributes
index a86b4f2bf709f0fdae98ac0c61927e8ad256b501..f5950b4e844e9af9268fc95b5aa56c2c78d47ec4 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 0000000000000000000000000000000000000000..b9822500b1a38a9250fa7a255f72bca5d27b0198
--- /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....'
+            }
+        }
+    }
+}