diff options
author | deadprogram <[email protected]> | 2020-08-14 20:02:00 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-08-19 08:37:16 +0200 |
commit | 2d03f65d670f839448615b3b1af99a5d754fac3c (patch) | |
tree | 7a2607d6581d760071294bea4cc1ebd658ca02b9 | |
parent | 154d4a781f6121bd6f584cca4a88909e0b091f63 (diff) | |
download | tinygo-2d03f65d670f839448615b3b1af99a5d754fac3c.tar.gz tinygo-2d03f65d670f839448615b3b1af99a5d754fac3c.zip |
build: add Go 1.15 to CircleCI build
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index bee7e9a97..44250aa42 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -387,6 +387,12 @@ jobs: steps: - test-linux: llvm: "10" + test-llvm10-go115: + docker: + - image: circleci/golang:1.15-buster + steps: + - test-linux: + llvm: "10" assert-test-linux: docker: - image: circleci/golang:1.14-stretch @@ -418,6 +424,7 @@ workflows: - test-llvm10-go112 - test-llvm10-go113 - test-llvm10-go114 + - test-llvm10-go115 - build-linux - build-macos - assert-test-linux |