Initial Jenkinsfile

Initial Jenkinsfile

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..1f70fc6
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,24 @@
+pipeline {
+    agent { dockerfile true }
+
+    stages {
+        stage('Init') {
+            steps {
+                sh 'git submodule update --init --recursive'
+                sh './sp-tools.sh init'
+                sh './sp-tools.sh install_default_paks'
+            }
+        }
+        stage('Config') {
+            steps {
+                sh './sp-tools.sh configure_cmake both'
+            }
+        }
+        stage('Build') {
+            steps {
+                sh './sp-tools.sh build both'
+            }
+        }
+    }
+}
+

GitHub
sha: 4646c8bb