Create Jenkinsfile for OSUOSL PowerCI
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Sat, 8 Aug 2020 16:05:20 +0000 (18:05 +0200)
committerGitHub <noreply@github.com>
Sat, 8 Aug 2020 16:05:20 +0000 (18:05 +0200)
Jenkinsfile [new file with mode: 0644]

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644 (file)
index 0000000..2b61bed
--- /dev/null
@@ -0,0 +1,9 @@
+node {
+        stage('Checkout') {
+            checkout
+        }
+
+        stage('Build') {
+            sh("make")
+        }
+}