aboutsummaryrefslogtreecommitdiffhomepage
path: root/.circleci
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2021-03-04 21:32:36 +0100
committerRon Evans <[email protected]>2021-03-09 18:15:49 +0100
commitb0366743cd1080e107e0560eed790ccaa0537158 (patch)
tree648ec2b0006658d3ac597548b1a23fb71ec90818 /.circleci
parentc54bdf8b515f9c2a50a91c555b1040b502e989d1 (diff)
downloadtinygo-b0366743cd1080e107e0560eed790ccaa0537158.tar.gz
tinygo-b0366743cd1080e107e0560eed790ccaa0537158.zip
all: remove support for Go 1.11 and 1.12
Go 1.13 has some important improvements that we would like to use, such as the new integer literals and `errors.Is` which both arrived in Go 1.13.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml14
1 files changed, 0 insertions, 14 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 9d99582a0..316507c9f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -342,18 +342,6 @@ commands:
- /go/pkg/mod
jobs:
- test-llvm10-go111:
- docker:
- - image: circleci/golang:1.11-buster
- steps:
- - test-linux:
- llvm: "10"
- test-llvm10-go112:
- docker:
- - image: circleci/golang:1.12-buster
- steps:
- - test-linux:
- llvm: "10"
test-llvm10-go113:
docker:
- image: circleci/golang:1.13-buster
@@ -399,8 +387,6 @@ jobs:
workflows:
test-all:
jobs:
- - test-llvm10-go111
- - test-llvm10-go112
- test-llvm10-go113
- test-llvm10-go114
- test-llvm11-go115