Skip to content

Commit be902d7

Browse files
committed
Move back to Buildkite now that SPIRVIntrinsics has been fixed.
1 parent 1329b70 commit be902d7

File tree

2 files changed

+25
-63
lines changed

2 files changed

+25
-63
lines changed

.buildkite/pipeline.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -96,31 +96,31 @@ steps:
9696
soft_fail:
9797
- exit_status: 3
9898

99-
#- label: "OpenCL.jl"
100-
# plugins:
101-
# - JuliaCI/julia#v1:
102-
# version: "1.10"
103-
# - JuliaCI/julia-coverage#v1:
104-
# codecov: true
105-
# command: |
106-
# julia -e 'println("--- :julia: Instantiating project")
107-
# using Pkg
108-
# Pkg.develop(; path=pwd())
109-
# Pkg.develop(; name="OpenCL")
110-
# Pkg.develop(; name="SPIRVIntrinsics")' || exit 3
111-
#
112-
# julia -e 'println("+++ :julia: Running tests")
113-
# using Pkg
114-
# Pkg.test("OpenCL"; coverage=true)'
115-
# agents:
116-
# # XXX: not on "juliaecosystem" because those workers don't have libc-dev
117-
# # see JuliaGPU/OpenCL.jl#303
118-
# queue: "juliagpu"
119-
# cuda: "*"
120-
# if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
121-
# timeout_in_minutes: 120
122-
# soft_fail:
123-
# - exit_status: 3
99+
- label: "OpenCL.jl"
100+
plugins:
101+
- JuliaCI/julia#v1:
102+
version: "1.10"
103+
- JuliaCI/julia-coverage#v1:
104+
codecov: true
105+
command: |
106+
julia -e 'println("--- :julia: Instantiating project")
107+
using Pkg
108+
Pkg.develop(; path=pwd())
109+
Pkg.develop(; name="OpenCL")
110+
Pkg.develop(; name="SPIRVIntrinsics")' || exit 3
111+
112+
julia -e 'println("+++ :julia: Running tests")
113+
using Pkg
114+
Pkg.test("OpenCL"; coverage=true)'
115+
agents:
116+
# XXX: not on "juliaecosystem" because those workers don't have libc-dev
117+
# see JuliaGPU/OpenCL.jl#303
118+
queue: "juliagpu"
119+
cuda: "*"
120+
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
121+
timeout_in_minutes: 120
122+
soft_fail:
123+
- exit_status: 3
124124

125125
- label: "Enzyme.jl"
126126
plugins:

.github/workflows/Test.yml

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -125,41 +125,3 @@ jobs:
125125
token: ${{ secrets.CODECOV_TOKEN }}
126126
fail_ci_if_error: false
127127
files: lcov.info
128-
129-
# XXX: move to Buildkite -- currently done here because the juliaecosystem workers trigger
130-
# bugs in pocl_jll (OpenCL.jl#303) and the juliagpu workers encounter test failures.
131-
opencl_test:
132-
name: "OpenCL.jl"
133-
runs-on: ubuntu-latest
134-
steps:
135-
- uses: actions/checkout@v4
136-
137-
- name: Install Julia
138-
uses: julia-actions/setup-julia@v2
139-
with:
140-
version: "1.10"
141-
arch: x64
142-
143-
- name: Set-up cache
144-
uses: julia-actions/cache@v2
145-
146-
- name: Install OpenCL.jl
147-
run: |
148-
julia -e 'using Pkg
149-
Pkg.develop(; path=pwd())
150-
Pkg.develop(; name="OpenCL")
151-
Pkg.develop(; name="SPIRVIntrinsics")' || exit 3
152-
153-
- name: Run tests
154-
run: |
155-
julia -e 'using Pkg
156-
Pkg.test("OpenCL"; coverage=true)'
157-
158-
- name: Process coverage
159-
uses: julia-actions/julia-processcoverage@v1
160-
- name: Submit coverage
161-
uses: codecov/codecov-action@v5
162-
with:
163-
token: ${{ secrets.CODECOV_TOKEN }}
164-
fail_ci_if_error: false
165-
files: lcov.info

0 commit comments

Comments
 (0)