From 506f8f165c4c7de59255c5691ecef9f95dea5254 Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Tue, 28 Jun 2022 11:52:39 +0200 Subject: [PATCH] ci: fix go-1.13 installation For some reason the official way of getting older Go versions does not work, this patch makes the CI downgrade the package on a package manager level Signed-off-by: Moritz Poldrack Tested-by: builds.sr.ht Acked-by: Robin Jarry --- .builds/alpine-edge.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml index 90c3215..d66b9cf 100644 --- a/.builds/alpine-edge.yml +++ b/.builds/alpine-edge.yml @@ -1,4 +1,3 @@ ---- image: alpine/edge packages: - go @@ -25,7 +24,8 @@ tasks: cd aerc go test ./... - ancient-go-version: | - go install golang.org/dl/go1.13@latest - ~/go/bin/go1.13 download + curl -O https://dl-cdn.alpinelinux.org/alpine/v3.11/community/x86_64/go-1.13.13-r0.apk + sudo apk add ./go-1.13.13-r0.apk cd aerc - make GO=~/go/bin/go1.13 + make clean + make