all: add support for go 1.13

This commit is contained in:
Jaden Weiss
2019-09-22 12:31:05 -04:00
committed by Ayke van Laethem
parent 6c9e55bd06
commit 17ef7a5c32
8 changed files with 79 additions and 15 deletions
+9 -3
View File
@@ -164,8 +164,8 @@ commands:
- run:
name: "Install dependencies"
command: |
curl https://dl.google.com/go/go1.12.5.darwin-amd64.tar.gz -o go1.12.5.darwin-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.12.5.darwin-amd64.tar.gz
curl https://dl.google.com/go/go1.13.darwin-amd64.tar.gz -o go1.13.darwin-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.darwin-amd64.tar.gz
ln -s /usr/local/go/bin/go /usr/local/bin/go
HOMEBREW_NO_AUTO_UPDATE=1 brew install qemu
- restore_cache:
@@ -245,9 +245,14 @@ jobs:
- image: circleci/golang:1.12-stretch
steps:
- test-linux
test-llvm8-go113:
docker:
- image: circleci/golang:1.13-stretch
steps:
- test-linux
build-linux:
docker:
- image: circleci/golang:1.12-stretch
- image: circleci/golang:1.13-stretch
steps:
- build-linux
build-macos:
@@ -264,5 +269,6 @@ workflows:
jobs:
- test-llvm8-go111
- test-llvm8-go112
- test-llvm8-go113
- build-linux
- build-macos