diff options
author | Ayke van Laethem <[email protected]> | 2021-08-15 15:22:18 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-08-16 21:19:26 +0200 |
commit | 25c7bfd404448a159a52f41930ac210bca6f1b53 (patch) | |
tree | 824566580cec6327d35c03a7f652e53b3401820e /.circleci | |
parent | 04f520040e6d60ace0728d0016cbe1e75bc44f71 (diff) | |
download | tinygo-25c7bfd404448a159a52f41930ac210bca6f1b53.tar.gz tinygo-25c7bfd404448a159a52f41930ac210bca6f1b53.zip |
ci: drop support for Go 1.13 and 1.14
They aren't supported anymore in CI, and because untested code is broken
code, let's remove support for these Go versions altogether.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 01f2bec82..bcc9b80d1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -365,24 +365,12 @@ commands: - /go/pkg/mod jobs: - test-llvm10-go113: - docker: - - image: circleci/golang:1.13-buster - steps: - - test-linux: - llvm: "10" - test-llvm10-go114: - docker: - - image: circleci/golang:1.14-buster - steps: - - test-linux: - llvm: "10" - test-llvm11-go115: + test-llvm10-go115: docker: - image: circleci/golang:1.15-buster steps: - test-linux: - llvm: "11" + llvm: "10" test-llvm11-go116: docker: - image: circleci/golang:1.16-buster @@ -391,12 +379,12 @@ jobs: llvm: "11" assert-test-linux: docker: - - image: circleci/golang:1.14-stretch + - image: circleci/golang:1.16-stretch steps: - assert-test-linux build-linux: docker: - - image: circleci/golang:1.14-stretch + - image: circleci/golang:1.16-stretch steps: - build-linux build-macos: @@ -410,9 +398,7 @@ jobs: workflows: test-all: jobs: - - test-llvm10-go113 - - test-llvm10-go114 - - test-llvm11-go115 + - test-llvm10-go115 - test-llvm11-go116 - build-linux - build-macos |