-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
29 lines (29 loc) · 978 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//pipeline {
// agent any
// stages {
// stage('Retrieve Assembly from deploy dir') {
// steps {
// sh 'sudo cp /opt/deploy/batchETL/BatchETL2-assembly-0.1.jar lib/'
// sh 'sudo cp /opt/deploy/mrSpark2/MRSpark2-assembly-0.1.jar lib/'
// sh 'sudo cp /opt/deploy/realTimeETL/RealTimeETL-assembly-0.1.jar lib/'
// sh 'sudo cp /opt/deploy/realTimeMovieRec/RealTimeMovieRec-assembly-0.1.jar lib/'
// sh 'ls lib/'
// }
// }
// stage('Integration Tests') {
// steps {
// sh 'sbt clean test'
// archiveArtifacts 'target/test-reports/*.xml'
// }
// }
// stage('Production Deploy') {
// steps {
// echo 'Safe to Deploy ${params.APP_TO_INTEGRATE} in production'
// echo ' You make a great job :D'
// }
// }
// }
// parameters {
// string(name: 'APP_TO_INTEGRATE', defaultValue: '???', description: 'The newly updated assembly that you want to integration test')
// }
//}