Skip to content

Commit b15e675

Browse files
authored
Fix release_head_macos and release_head_linux jobs after upgrading xcode base image on CircleCI (#499)
* Use pip3 after upgrading xcode base image on CircleCI * Run apt-get update for release_head_linux CircleCI job
1 parent cffdb90 commit b15e675

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
<<: *linux_image
2525
steps:
2626
- checkout
27-
- run: sudo apt-get install awscli
27+
- run: sudo apt-get update && sudo apt-get install awscli
2828
- run: make build-linux-all VERSION=head
2929
- run: make publish-head
3030

@@ -44,7 +44,7 @@ jobs:
4444
<<: *macos_image
4545
steps:
4646
- checkout
47-
- run: pip install awscli
47+
- run: pip3 install awscli
4848
- run:
4949
command: sh .circleci/xcode_install_go
5050
- run:

0 commit comments

Comments
 (0)