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

git at git.haskell.org git at git.haskell.org
Fri Apr 21 18:53:31 UTC 2017


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

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

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

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

    Testing simpler Jenkinsfile


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

cdb65ee0c5f72edd84ff2f98af574c4fef277357
 Jenkinsfile | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

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



More information about the ghc-commits mailing list