From 8eb60390522616067321be05b948d6ba585fdad0 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sat, 27 Jul 2019 09:41:17 -0700 Subject: [PATCH] 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. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 772fe51a..3abf6d48 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: