Skip to content

Commit 76f0ba3

Browse files
committed
ci: rename some jobs to avoid churn on every Go/LLVM version bump
1 parent 35adbff commit 76f0ba3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.circleci/config.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,18 @@ commands:
9292
- /go/pkg/mod
9393

9494
jobs:
95-
test-llvm15-go122:
95+
test-oldest:
96+
# This tests our lowest supported versions of Go and LLVM, to make sure at
97+
# least the smoke tests still pass.
9698
docker:
9799
- image: golang:1.22-bullseye
98100
steps:
99101
- test-linux:
100102
llvm: "15"
101103
resource_class: large
102-
test-llvm20-go124:
104+
test-newest:
105+
# This tests the latest supported LLVM version when linking against system
106+
# libraries.
103107
docker:
104108
- image: golang:1.24-bullseye
105109
steps:
@@ -110,8 +114,5 @@ jobs:
110114
workflows:
111115
test-all:
112116
jobs:
113-
# This tests our lowest supported versions of Go and LLVM, to make sure at
114-
# least the smoke tests still pass.
115-
- test-llvm15-go122
116-
# This tests LLVM 20 support when linking against system libraries.
117-
- test-llvm20-go124
117+
- test-oldest
118+
- test-newest

0 commit comments

Comments
 (0)