Skip to content

Commit

Permalink
Merge pull request #759 from azinneera/cd-filter
Browse files Browse the repository at this point in the history
Add deployment-tinkerer to CD pipeline filter for copying artifacts
  • Loading branch information
kasunbg authored May 17, 2018
2 parents 8033a5b + 0e7cf18 commit c97db2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/pipelines/continuous-delivery/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
node('COMPONENT_ECS') {
stage('Deploy to Dev'){
deleteDir()
copyArtifacts(projectName: 'testgrid/testgrid', filter: 'distribution/target/*.zip, web/target/*.war, remote-session/target/*.war');
copyArtifacts(projectName: 'testgrid/testgrid', filter: 'distribution/target/*.zip, web/target/*.war, deployment-tinkerer/target/*.war');
sshagent(['testgrid-dev-key']) {
sh """
scp -o StrictHostKeyChecking=no web/target/*.war ${DEV_USER}@${DEV_HOST}:/testgrid/deployment/apache-tomcat-8.5.23/webapps/ROOT.war
Expand Down

0 comments on commit c97db2e

Please sign in to comment.