aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-06-19 23:09:00 -0400
committerMicah Lee <micah@micahflee.com>2022-06-19 23:09:00 -0400
commit1116a407ea79d68c47bb29074f52ff855bac56db (patch)
tree36127c6519ae252e83881a8717890364a049d507 /.circleci
parenta54b6beb12436c3b042387d5f193526d7fea4767 (diff)
downloadonionshare-1116a407ea79d68c47bb29074f52ff855bac56db.tar.gz
onionshare-1116a407ea79d68c47bb29074f52ff855bac56db.zip
Speed up macOS build by skipping homebrew (downloading the Go pkg, and using curl instead of wget)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3f7a6b20..fa7970f8 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -330,15 +330,15 @@ jobs:
steps:
- checkout
- run:
- name: Install Homebrew dependencies
+ name: Install Go 1.18.3
command: |
- brew install wget
- brew install go
+ curl https://go.dev/dl/go1.18.3.darwin-amd64.pkg --output ~/Downloads/go.pkg
+ sudo installer -pkg ~/Downloads/go.pkg -target /
- run:
name: Install Python 3.9.13
command: |
- wget https://www.python.org/ftp/python/3.9.13/python-3.9.13-macosx10.9.pkg -O ~/Downloads/python.pkg
+ curl https://www.python.org/ftp/python/3.9.13/python-3.9.13-macosx10.9.pkg --output ~/Downloads/python.pkg
sudo installer -pkg ~/Downloads/python.pkg -target /
- run: