]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
added basic Jenkinsfile
authorvectorcamp-jenkins <82393366+vectorcamp-jenkins@users.noreply.github.com>
Tue, 13 Apr 2021 19:52:42 +0000 (22:52 +0300)
committervectorcamp-jenkins <82393366+vectorcamp-jenkins@users.noreply.github.com>
Tue, 13 Apr 2021 19:52:42 +0000 (22:52 +0300)
Jenkinsfile [new file with mode: 0644]

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644 (file)
index 0000000..1883f43
--- /dev/null
@@ -0,0 +1,22 @@
+pipeline {
+  agent {
+    node {
+      label 'x86'
+    }
+
+  }
+  stages {
+    stage('Release, SSE') {
+      agent {
+        node {
+          label 'x86'
+        }
+
+      }
+      steps {
+        sh 'mkdir build-release-SSE &&  cmake -DCMAKE_BUILD_TYPE=Release   -C build-release-SSE'
+      }
+    }
+
+  }
+}
\ No newline at end of file