Skip to content

Commit a6a6adf

Browse files
Add Jenkinsfile to root of project
1 parent a975be2 commit a6a6adf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Jenkinsfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Compile') {
5+
steps {
6+
sh 'sbt clean compile'
7+
}
8+
}
9+
stage('Test') {
10+
steps {
11+
sh 'sbt GatlingIt/test'
12+
}
13+
post {
14+
always {
15+
deleteDir() /* clean up our workspace */
16+
}
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)