aboutsummaryrefslogtreecommitdiffstats
path: root/.builds
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-04-23 21:40:19 +0200
committerRobin Jarry <robin@jarry.cc>2023-04-24 09:49:00 +0200
commit59ce0a11911d7b5fbda6a91b900aabebae55cbea (patch)
tree1023404b0ccf549fea8c61f7e0af88f79a258161 /.builds
parente7aefcaff8fcbc6fa6f2a424e1662c1e9cf6839f (diff)
downloadaerc-59ce0a11911d7b5fbda6a91b900aabebae55cbea.tar.gz
mod: drop support for go 1.17
A lot of libraries are starting to use generics (introduced in go 1.18). Restricting aerc on 1.17 prevents us from updating our dependencies. Since 1.18 is a major milestone, it has a chance to remain supported for a while. Update the minimum go version to 1.18. Run go mod tidy -compat=1.18. Update our CI to run on 1.18. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to '.builds')
-rw-r--r--.builds/alpine-edge.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml
index bc63b35d..0f097c53 100644
--- a/.builds/alpine-edge.yml
+++ b/.builds/alpine-edge.yml
@@ -29,8 +29,8 @@ tasks:
cd aerc
go test ./...
- ancient-go-version: |
- curl -O https://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/go-1.17.10-r0.apk
- sudo apk add ./go-1.17.10-r0.apk
+ curl -O https://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/go-1.18.7-r0.apk
+ sudo apk add ./go-1.18.7-r0.apk
cd aerc
make clean
make