[commit: ghc] wip/jenkins: Testing simpler Jenkinsfile (3ed0bbc)

git at git.haskell.org git at git.haskell.org
Fri Apr 21 18:51:48 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/jenkins
Link       : http://ghc.haskell.org/trac/ghc/changeset/3ed0bbcd309725ba1dd68d254de0553db8ee24d8/ghc

>---------------------------------------------------------------

commit 3ed0bbcd309725ba1dd68d254de0553db8ee24d8
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Fri Apr 21 14:29:34 2017 -0400

    Testing simpler Jenkinsfile


>---------------------------------------------------------------

3ed0bbcd309725ba1dd68d254de0553db8ee24d8
 Jenkinsfile | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..ceb5359
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,15 @@
+pipeline {
+    agent any
+    stages {
+        stage('Build') {
+            steps {
+                sh '''
+                   ./boot
+                   ./configure --enable-tarballs-autodownload
+                   make -j$THREADS
+                   make THREADS=$THREADS test
+                   '''
+            }
+        }
+    }
+}



More information about the ghc-commits mailing list