Skip to content

Commit

Permalink
Merge pull request #1658 from adenishchenko/bump_libindy_1618
Browse files Browse the repository at this point in the history
Pin pip for cd
  • Loading branch information
Toktar authored Feb 20, 2021
2 parents f31c923 + bc995f5 commit c212a29
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def nodeTestUbuntu = {

testEnv.inside('--network host') {
echo 'Ubuntu Test: Install dependencies'
sh 'pip install pip==10.0.0'
testHelpers.install()

echo 'Ubuntu Test: Test'
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def withTestEnv(body) {

buildDocker("hyperledger/indy-node-ci", "ci/ubuntu.dockerfile ci").inside {
echo 'Test: Install dependencies'
sh 'pip install pip==10.0.0'
sh "pip install pip==10.0.0"
install()
body.call('python')
}
Expand Down
1 change: 1 addition & 0 deletions ci/pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def systemTests(Closure body) {
def uid = sh(returnStdout: true, script: 'id -u').trim()
docker.build("hyperledger/indy-node-ci", "--build-arg uid=$uid -f ci/ubuntu.dockerfile ci").inside {
sh """
pip install pip==10.0.0
pip install .[tests] >$pipLogName
"""

Expand Down

0 comments on commit c212a29

Please sign in to comment.