Skip to content

Commit ce174c6

Browse files
committed
Work around XUnit.jl bug.
1 parent c7d9b78 commit ce174c6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@ steps:
1515
julia --project -e '
1616
# make sure the 1.6-era Manifest works on this Julia version
1717
using Pkg
18-
Pkg.resolve()'
18+
Pkg.resolve()
19+
20+
# work around XUnit.jl bug
21+
try
22+
Pkg.add(url="https://github.com/maleadt/XUnit.jl", rev="pass_compat")
23+
catch err
24+
@warn "Could not install patched version of XUnit.jl"
25+
end'
1926
if: build.message !~ /\[skip tests\]/
2027
timeout_in_minutes: 120
2128
matrix:

0 commit comments

Comments
 (0)