diff options
author | Dan Kegel <[email protected]> | 2022-04-10 10:13:38 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-04-18 22:52:14 +0200 |
commit | e09b1d06f5612496e1cd525cf30ef92a8b88efe5 (patch) | |
tree | 5657b274762901e225103e80825a997fcbc797a8 /.circleci | |
parent | 0590ccb2602a1acc281d21d9a43192544be96250 (diff) | |
download | tinygo-e09b1d06f5612496e1cd525cf30ef92a8b88efe5.tar.gz tinygo-e09b1d06f5612496e1cd525cf30ef92a8b88efe5.zip |
Smoke test 1.15 still until we drop support for it
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 34a847e69..3b0d4357f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -102,9 +102,9 @@ commands: - run: make fmt-check jobs: - test-llvm11-go116: + test-llvm11-go115: docker: - - image: circleci/golang:1.16-buster + - image: circleci/golang:1.15-buster steps: - test-linux: llvm: "11" @@ -118,5 +118,5 @@ jobs: workflows: test-all: jobs: - - test-llvm11-go116 + - test-llvm11-go115 - test-llvm12-go117 |