[commit: ghc] wip/jenkins: Testing simpler Jenkinsfile (9603015)
git at git.haskell.org
git at git.haskell.org
Thu Jul 27 20:49:09 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/9603015411aa0e8d5ea0c75b40584d636f696b48/ghc
>---------------------------------------------------------------
commit 9603015411aa0e8d5ea0c75b40584d636f696b48
Author: Ben Gamari <ben at smart-cactus.org>
Date: Fri Apr 21 14:29:34 2017 -0400
Testing simpler Jenkinsfile
>---------------------------------------------------------------
9603015411aa0e8d5ea0c75b40584d636f696b48
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