all: remove support for LLVM 11 and LLVM 12

This removes a lot of backwards compatibility cruft and makes it
possible to start using features that need LLVM 13 or newer.
For example:

  * https://github.com/tinygo-org/tinygo/pull/2637
  * https://github.com/tinygo-org/tinygo/pull/2830
This commit is contained in:
Ayke van Laethem
2022-05-05 14:52:20 +02:00
committed by Ron Evans
parent 5afb63df60
commit 5c23f6fb6c
17 changed files with 18 additions and 166 deletions
+5 -10
View File
@@ -102,21 +102,16 @@ commands:
- run: make fmt-check
jobs:
test-llvm11-go116:
test-llvm13-go116:
docker:
- image: circleci/golang:1.16-buster
steps:
- test-linux:
llvm: "11"
test-llvm12-go117:
docker:
- image: circleci/golang:1.17-buster
steps:
- test-linux:
llvm: "12"
llvm: "13"
workflows:
test-all:
jobs:
- test-llvm11-go116
- test-llvm12-go117
# This tests our lowest supported versions of Go and LLVM, to make sure at
# least the smoke tests still pass.
- test-llvm13-go116