Skip to content

Commit f90c557

Browse files
committed
exclude 1.8.0-rc1, since that build fails
1 parent 1d7ef02 commit f90c557

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pdf/make.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,12 @@ function collect_versions()
125125
# versions and exclude tags that are pre-releases or have build information.
126126
v = VersionNumber(tag)
127127
# pdf doc only possible for 1.1.0 and above
128-
# only build rc if > 1.7
129-
if v >= v"1.1.0" && (isempty(v.prerelease) || v > v"1.7.0")
130-
push!(versions, v)
131-
end
128+
v >= v"1.1.0" || continue
129+
# only build RCs if > 1.7
130+
v < v"1.7.0" && !isempty(v.prerelease) && continue
131+
# exclude 1.8.0-rc1
132+
v == v"1.8.0-rc1" && continue
133+
push!(versions, v)
132134
end
133135
end
134136
return versions

0 commit comments

Comments
 (0)