ci: fix Go image on the Debian Stretch images

The build broke because the images got upgraded from stretch to buster.
Specify the stretch images (for now) so that it works again.
We can upgrade to buster for go1.12 at a later time.
This commit is contained in:
Ayke van Laethem
2019-07-27 09:41:17 -07:00
committed by Ron Evans
parent 64597de344
commit 8eb6039052
+3 -3
View File
@@ -225,17 +225,17 @@ commands:
jobs:
test-llvm8-go111:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.11-stretch
steps:
- test-linux
test-llvm8-go112:
docker:
- image: circleci/golang:1.12
- image: circleci/golang:1.12-stretch
steps:
- test-linux
build-linux:
docker:
- image: circleci/golang:1.12
- image: circleci/golang:1.12-stretch
steps:
- build-linux
build-macos: