aboutsummaryrefslogtreecommitdiffhomepage
path: root/.circleci
diff options
context:
space:
mode:
authorDan Kegel <[email protected]>2022-05-01 08:04:05 -0700
committerRon Evans <[email protected]>2022-05-03 05:36:55 +0200
commite87cd23e873cc4dc19d7563ba01e95e295707f36 (patch)
tree55877ca031d04a477ccd32bf2967e403fc0fad91 /.circleci
parentdb389ba443c274c5d24e771e7bd5f7ab56866cae (diff)
downloadtinygo-e87cd23e873cc4dc19d7563ba01e95e295707f36.tar.gz
tinygo-e87cd23e873cc4dc19d7563ba01e95e295707f36.zip
os: Drop support for go 1.15
1.15 specific files deleted. 1.16 specific files folded carefully into generic files, with goal of reducing diff with upstream. Follows upstream 1.16 in making PathError etc. be aliases for the same errors in io/fs. This fixes #2817 and lets us add io/ioutil to "make test-tinygo" on linux and mac.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3924b1dbe..f33f9de31 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -102,9 +102,9 @@ commands:
- run: make fmt-check
jobs:
- test-llvm11-go115:
+ test-llvm11-go116:
docker:
- - image: circleci/golang:1.15-buster
+ - image: circleci/golang:1.16-buster
steps:
- test-linux:
llvm: "11"
@@ -118,5 +118,5 @@ jobs:
workflows:
test-all:
jobs:
- - test-llvm11-go115
+ - test-llvm11-go116
- test-llvm12-go117