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

git at git.haskell.org git at git.haskell.org
Sat Jun 17 13:50:41 UTC 2017


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

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

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

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

    Testing simpler Jenkinsfile


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

7208e5e5950e534e0c0a0e01f641b27f86ae913e
 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