Skip to content

Commit

Permalink
disabled tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abalalaev committed Jul 24, 2023
1 parent 2964339 commit 0874531
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pipeline {
steps {
script {
sh "echo ${BRANCH_NAME} ${GIT_BRANCH} ${GIT_COMMIT} ${MY_VERSION} ${MY_ENV}"
sh "mvn clean package -Dbuild.version=${MY_VERSION}"
sh "mvn clean package -DskipTests=true -Dbuild.version=${MY_VERSION}"
}
}
}
Expand All @@ -34,5 +34,14 @@ pipeline {
}
}
}
stage('Deploy to dev') {
when {
branch "master"
}
steps {
git branch: 'master', url: "[email protected]:Alkimi-Exchange/alkimi-ansible.git", credentialsId: 'ssh-alkimi-ansible'
sh "ansible-playbook ./apps/dev/prebid-server.yml"
}
}
}
}

0 comments on commit 0874531

Please sign in to comment.