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

git at git.haskell.org git at git.haskell.org
Fri Jul 28 16:42:52 UTC 2017


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

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

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

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

    Testing simpler Jenkinsfile


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

bdbfe5a67c3d304331f002bd6255275781949a3b
 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