From 8b4624a420862b878bbfa0ed1c308bb79e6449f1 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 11 Jul 2025 09:21:09 +0200 Subject: [PATCH] ci: rename some jobs to avoid churn on every Go/LLVM version bump --- .circleci/config.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5a73dceae..afa7a7300 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -92,14 +92,18 @@ commands: - /go/pkg/mod jobs: - test-llvm15-go122: + test-oldest: + # This tests our lowest supported versions of Go and LLVM, to make sure at + # least the smoke tests still pass. docker: - image: golang:1.22-bullseye steps: - test-linux: llvm: "15" resource_class: large - test-llvm20-go124: + test-newest: + # This tests the latest supported LLVM version when linking against system + # libraries. docker: - image: golang:1.24-bullseye steps: @@ -110,8 +114,5 @@ jobs: workflows: test-all: jobs: - # This tests our lowest supported versions of Go and LLVM, to make sure at - # least the smoke tests still pass. - - test-llvm15-go122 - # This tests LLVM 20 support when linking against system libraries. - - test-llvm20-go124 + - test-oldest + - test-newest