aboutsummaryrefslogtreecommitdiffhomepage
path: root/.circleci
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2019-07-27 09:41:17 -0700
committerRon Evans <[email protected]>2019-07-27 09:51:38 -0700
commit8eb60390522616067321be05b948d6ba585fdad0 (patch)
tree846e28fed02f12ae2473e2f914f208add4b3f184 /.circleci
parent64597de344ceb33ea4e7fa65ca4f1134ac7843ee (diff)
downloadtinygo-8eb60390522616067321be05b948d6ba585fdad0.tar.gz
tinygo-8eb60390522616067321be05b948d6ba585fdad0.zip
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.
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 772fe51ab..3abf6d485 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: