ci: rename some jobs to avoid churn on every Go/LLVM version bump

This commit is contained in:
Ayke van Laethem
2025-07-11 09:21:09 +02:00
committed by Ron Evans
parent 9fd1b7b1a8
commit 8b4624a420
+8 -7
View File
@@ -92,14 +92,18 @@ commands:
- /go/pkg/mod - /go/pkg/mod
jobs: 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: docker:
- image: golang:1.22-bullseye - image: golang:1.22-bullseye
steps: steps:
- test-linux: - test-linux:
llvm: "15" llvm: "15"
resource_class: large resource_class: large
test-llvm20-go124: test-newest:
# This tests the latest supported LLVM version when linking against system
# libraries.
docker: docker:
- image: golang:1.24-bullseye - image: golang:1.24-bullseye
steps: steps:
@@ -110,8 +114,5 @@ jobs:
workflows: workflows:
test-all: test-all:
jobs: jobs:
# This tests our lowest supported versions of Go and LLVM, to make sure at - test-oldest
# least the smoke tests still pass. - test-newest
- test-llvm15-go122
# This tests LLVM 20 support when linking against system libraries.
- test-llvm20-go124