Skip to content

Commit ae622f1

Browse files
committed
Adding Jenkinsfile for hotbed.io
1 parent 54205da commit ae622f1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Jenkinsfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
node('gcc') {
2+
stage("Checkout") {
3+
git url: "https://github.com/riolet/rix", branch: "master"
4+
}
5+
stage("Build") {
6+
sh "make"
7+
}
8+
stage("Run tests"){
9+
sh "cd tests && chmod +x runtests.sh && ./runtests.sh"
10+
}
11+
}

0 commit comments

Comments
 (0)