Skip to content

Commit

Permalink
Fix release_head_macos and release_head_linux jobs after upgrading xc…
Browse files Browse the repository at this point in the history
…ode base image on CircleCI (#499)

* Use pip3 after upgrading xcode base image on CircleCI

* Run apt-get update for release_head_linux CircleCI job
  • Loading branch information
camillof authored Aug 4, 2022
1 parent cffdb90 commit b15e675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
<<: *linux_image
steps:
- checkout
- run: sudo apt-get install awscli
- run: sudo apt-get update && sudo apt-get install awscli
- run: make build-linux-all VERSION=head
- run: make publish-head

Expand All @@ -44,7 +44,7 @@ jobs:
<<: *macos_image
steps:
- checkout
- run: pip install awscli
- run: pip3 install awscli
- run:
command: sh .circleci/xcode_install_go
- run:
Expand Down

0 comments on commit b15e675

Please sign in to comment.