Skip to content

Commit bb58783

Browse files
aykevldeadprogram
authored andcommitted
ci: switch to Go 1.15 for MacOS builds
Unfortunately, CircleCI doesn't seem to provide Debian stretch builds with Go 1.15. We should be using Debian stretch (an older distro) to make sure the tinygo binary runs on as many Linux systems as possible (including older ones), and I think using Go 1.14 for these builds is unfortunate but the better tradeoff.
1 parent 7abc671 commit bb58783

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
@@ -274,8 +274,8 @@ commands:
274274
- run:
275275
name: "Install dependencies"
276276
command: |
277-
curl https://dl.google.com/go/go1.14.darwin-amd64.tar.gz -o go1.14.darwin-amd64.tar.gz
278-
sudo tar -C /usr/local -xzf go1.14.darwin-amd64.tar.gz
277+
curl https://dl.google.com/go/go1.15.5.darwin-amd64.tar.gz -o go1.15.5.darwin-amd64.tar.gz
278+
sudo tar -C /usr/local -xzf go1.15.5.darwin-amd64.tar.gz
279279
ln -s /usr/local/go/bin/go /usr/local/bin/go
280280
HOMEBREW_NO_AUTO_UPDATE=1 brew install qemu
281281
- install-xtensa-toolchain:

0 commit comments

Comments
 (0)