From c85fb0813ab1d315b56933d495d13db9147e25a4 Mon Sep 17 00:00:00 2001 From: Camillo Facello <52419977+camillof@users.noreply.github.com> Date: Thu, 4 Aug 2022 15:44:45 -0300 Subject: [PATCH 1/2] Use pip3 after upgrading xcode base image on CircleCI --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2dcf209d..acdd7b4c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: From 975ed6b37206fd2bca9e21c5aab3122991b5ef88 Mon Sep 17 00:00:00 2001 From: Camillo Facello <52419977+camillof@users.noreply.github.com> Date: Thu, 4 Aug 2022 16:06:28 -0300 Subject: [PATCH 2/2] Run apt-get update for release_head_linux CircleCI job --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index acdd7b4c..19f78526 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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