diff options
author | Elliott Sales de Andrade <[email protected]> | 2020-02-11 17:23:42 -0500 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-04-12 18:41:34 +0200 |
commit | 0a8bfc57efa5fa9b64317233ad3666a0e955f0d2 (patch) | |
tree | 30f9d6f91aee75543ad1b6ca1574e2eaae437e6d /.circleci | |
parent | 5674c35e1477e21eaafab3a51241d84e47a679dd (diff) | |
download | tinygo-0a8bfc57efa5fa9b64317233ad3666a0e955f0d2.tar.gz tinygo-0a8bfc57efa5fa9b64317233ad3666a0e955f0d2.zip |
all: support Go 1.14
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 67ae73422..498861027 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -232,8 +232,8 @@ commands: - run: name: "Install dependencies" command: | - 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 + curl https://dl.google.com/go/go1.14.darwin-amd64.tar.gz -o go1.14.darwin-amd64.tar.gz + sudo tar -C /usr/local -xzf go1.14.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: @@ -327,14 +327,20 @@ jobs: steps: - test-linux: llvm: "10" + test-llvm10-go114: + docker: + - image: circleci/golang:1.14-buster + steps: + - test-linux: + llvm: "10" assert-test-linux: docker: - - image: circleci/golang:1.13-stretch + - image: circleci/golang:1.14-stretch steps: - assert-test-linux build-linux: docker: - - image: circleci/golang:1.13-stretch + - image: circleci/golang:1.14-stretch steps: - build-linux build-macos: @@ -352,6 +358,7 @@ workflows: - test-llvm9-go111 - test-llvm10-go112 - test-llvm10-go113 + - test-llvm10-go114 - build-linux - build-macos - assert-test-linux |