[commit: ghc] wip/jenkins: Testing simpler Jenkinsfile (e493c8d)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:24:38 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/e493c8d9a68a124a0eb0c51fb7b842656705fbaf/ghc
>---------------------------------------------------------------
commit e493c8d9a68a124a0eb0c51fb7b842656705fbaf
Author: Ben Gamari <ben at smart-cactus.org>
Date: Fri Apr 21 14:29:34 2017 -0400
Testing simpler Jenkinsfile
>---------------------------------------------------------------
e493c8d9a68a124a0eb0c51fb7b842656705fbaf
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