Skip to content

Commit 9ac3d49

Browse files
committed
Temp
1 parent e3c30d7 commit 9ac3d49

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.buildkite/pipeline.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ steps:
77
plugins:
88
- JuliaCI/julia#v1:
99
version: "{{matrix.julia}}"
10-
- JuliaCI/julia-test#v1:
11-
test_args: "--quickfail"
1210
- JuliaCI/julia-coverage#v1:
1311
codecov: true
1412
dirs:
@@ -24,6 +22,18 @@ steps:
2422
build.message !~ /\[only/ &&
2523
build.message !~ /\[skip tests\]/ &&
2624
build.message !~ /\[skip julia\]/
25+
commands: |
26+
julia -e 'println("--- :julia: Developing KernelAbstractions")
27+
using Pkg
28+
Pkg.add(url="https://github.com/christiangnrd/KernelAbstractions.jl", rev="intrinsics")'
29+
30+
julia -e 'println("--- :julia: Instantiating project")
31+
using Pkg
32+
Pkg.develop(; path=pwd())' || exit 3
33+
34+
julia -e 'println("+++ :julia: Running tests")
35+
using Pkg
36+
Pkg.test("Metal"; coverage=true)'
2737
timeout_in_minutes: 60
2838
matrix:
2939
setup:
@@ -99,6 +109,12 @@ steps:
99109
- JuliaCI/julia#v1:
100110
version: "1.12"
101111
command: |
112+
julia --project -e '
113+
using Pkg
114+
115+
println("--- :julia: Developing KernelAbstractions")
116+
Pkg.add(url="https://github.com/christiangnrd/KernelAbstractions.jl", rev="intrinsics")'
117+
102118
julia --project=perf -e '
103119
using Pkg
104120

0 commit comments

Comments
 (0)