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
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