Skip to content

Commit 7ba4044

Browse files
committed
[temp]
1 parent 12b05c4 commit 7ba4044

5 files changed

Lines changed: 12 additions & 7 deletions

File tree

.buildkite/pipeline.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps:
1313
Pkg.develop(path="lib/intrinsics")
1414
1515
println("+++ :julia: Running tests")
16-
Pkg.test(; coverage=true, test_args=`--platform=cuda`)'
16+
Pkg.test(; coverage=true, test_args=`--debug-stats --verbose --platform=cuda`)'
1717
agents:
1818
queue: "juliagpu"
1919
cuda: "*"
@@ -43,7 +43,7 @@ steps:
4343
println("+++ :julia: Running tests")
4444
using InteractiveUtils
4545
InteractiveUtils.versioninfo()
46-
Pkg.test(; coverage=true, test_args=`--platform=pocl`)'
46+
Pkg.test(; coverage=true, test_args=`--debug-stats --verbose --platform=pocl`)'
4747
agents:
4848
queue: "juliaecosystem"
4949
os: "macos"
@@ -55,3 +55,4 @@ steps:
5555
julia:
5656
- "1.10"
5757
- "1.12"
58+
- "1.13"

.github/workflows/Test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
version: ['1.10', '1.12']
25+
version: ['1.10', '1.12', 'pre']
2626
os: [ubuntu-24.04, ubuntu-24.04-arm, macOS-15-intel, windows-2022]
2727
arch: [x64, arm64]
2828
pocl: [jll, local]
@@ -137,7 +137,7 @@ jobs:
137137
uses: julia-actions/julia-runtest@v1
138138
if: runner.os != 'Windows'
139139
with:
140-
test_args: '--quickfail --platform=pocl'
140+
test_args: '--quickfail --debug-stats --verbose --platform=pocl'
141141

142142
- name: Setup BusyBox
143143
if: runner.os == 'Windows'
@@ -149,7 +149,7 @@ jobs:
149149
run: |
150150
using Pkg
151151
Pkg.activate(".")
152-
Pkg.test(; test_args=`--quickfail --platform=pocl`)
152+
Pkg.test(; test_args=`--quickfail --debug-stats --verbose --platform=pocl`)
153153
154154
- uses: julia-actions/julia-processcoverage@v1
155155
- uses: codecov/codecov-action@v5

src/OpenCL.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using Random
1010
using Preferences
1111

1212
import KernelAbstractions: KernelAbstractions
13-
13+
b = 4+3
1414
using Core: LLVMPtr
1515

1616
# library wrappers

test/Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
99
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
1010
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1111
ParallelTestRunner = "d3525ed8-44d0-4b2c-a655-542cee43accc"
12+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1213
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
1314
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1415
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
@@ -26,4 +27,4 @@ pocl_jll = "627d6b7a-bbe6-5189-83e7-98cc0a5aeadd"
2627

2728
[compat]
2829
pocl_jll = "7.0"
29-
ParallelTestRunner = "2.2"
30+
ParallelTestRunner = "2"

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
using Pkg
2+
Pkg.add(url="https://github.com/christiangnrd/ParallelTestRunner.jl", rev="total_time")
3+
14
using ParallelTestRunner
25
using Preferences
36
import OpenCL, pocl_jll

0 commit comments

Comments
 (0)