Skip to content

Commit 796cfd8

Browse files
authored
Test all buildkite runs on LTS and latest (#661)
* Test all buildkite runs on LTS and latest * Fix setup
1 parent 8c5419b commit 796cfd8

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

.buildkite/pipeline.yml

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
steps:
2-
- label: "CUDA.jl"
2+
- label: "CUDA.jl -- Julia {{matrix.julia}}"
33
plugins:
44
- JuliaCI/julia#v1:
5-
version: "1.10"
5+
version: "{{matrix.julia}}"
66
- JuliaCI/julia-coverage#v1:
77
codecov: true
88
command: |
@@ -42,13 +42,18 @@ steps:
4242
cuda: "*"
4343
if: build.message !~ /\[skip tests\]/
4444
timeout_in_minutes: 120
45+
matrix:
46+
setup:
47+
julia:
48+
- "1.10"
49+
- "1.12"
4550
soft_fail:
4651
- exit_status: 3
4752

48-
- label: "AMDGPU.jl"
53+
- label: "AMDGPU.jl -- Julia {{matrix.julia}}"
4954
plugins:
5055
- JuliaCI/julia#v1:
51-
version: "1.10"
56+
version: "{{matrix.julia}}"
5257
- JuliaCI/julia-coverage#v1:
5358
codecov: true
5459
command: |
@@ -89,13 +94,18 @@ steps:
8994
rocmgpu: "*"
9095
if: build.message !~ /\[skip tests\]/
9196
timeout_in_minutes: 120
97+
matrix:
98+
setup:
99+
julia:
100+
- "1.10"
101+
- "1.12"
92102
soft_fail:
93103
- exit_status: 3
94104

95-
- label: "oneAPI.jl"
105+
- label: "oneAPI.jl -- Julia {{matrix.julia}}"
96106
plugins:
97107
- JuliaCI/julia#v1:
98-
version: "1.10"
108+
version: "{{matrix.julia}}"
99109
- JuliaCI/julia-coverage#v1:
100110
codecov: true
101111
command: |
@@ -136,13 +146,18 @@ steps:
136146
intel: "*"
137147
if: build.message !~ /\[skip tests\]/
138148
timeout_in_minutes: 60
149+
matrix:
150+
setup:
151+
julia:
152+
- "1.10"
153+
- "1.12"
139154
soft_fail:
140155
- exit_status: 3
141156

142-
- label: "Metal.jl"
157+
- label: "Metal.jl -- Julia {{matrix.julia}}"
143158
plugins:
144159
- JuliaCI/julia#v1:
145-
version: "1.10"
160+
version: "{{matrix.julia}}"
146161
- JuliaCI/julia-coverage#v1:
147162
codecov: true
148163
command: |
@@ -183,6 +198,11 @@ steps:
183198
arch: "aarch64"
184199
if: build.message !~ /\[skip tests\]/
185200
timeout_in_minutes: 60
201+
matrix:
202+
setup:
203+
julia:
204+
- "1.10"
205+
- "1.12"
186206
soft_fail:
187207
- exit_status: 3
188208

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "GPUArrays"
22
uuid = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7"
3-
version = "11.3"
3+
version = "11.3.1"
44

55
[deps]
66
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

0 commit comments

Comments
 (0)