master- Sync Repo

This commit is contained in:
Mali Bayhan 2021-12-10 14:54:40 -08:00
parent b192a69676
commit 7f6ee5a1bc
2 changed files with 3240 additions and 5 deletions

3232
files/cacert.pem Normal file

File diff suppressed because it is too large Load Diff

View File

@ -29,6 +29,8 @@ pipeline {
stage('Check Pact Verifications') { stage('Check Pact Verifications') {
steps { steps {
sh 'cp files/cacert.pem /tmp'
withEnv(['SSL_CERT_FILE=/tmp/cacert.pem']) {
sh 'curl -LO https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v1.88.3/pact-1.88.3-linux-x86_64.tar.gz' sh 'curl -LO https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v1.88.3/pact-1.88.3-linux-x86_64.tar.gz'
sh 'tar xzf pact-1.88.3-linux-x86_64.tar.gz' sh 'tar xzf pact-1.88.3-linux-x86_64.tar.gz'
dir('pact/bin') { dir('pact/bin') {
@ -36,6 +38,7 @@ pipeline {
} }
} }
} }
}
stage('Deploy') { stage('Deploy') {
when { when {
branch 'junit5' branch 'junit5'