Skip to content

Commit 21f8182

Browse files
committed
Add version number for BinaryBuilder
1 parent 1efb4c2 commit 21f8182

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.ci/build_tarballs.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,9 @@ dependencies = [
4848
]
4949

5050
# Build the tarballs, and possibly a `build.jl` as well.
51-
download_info_07 = build_tarballs(ARGS, "libcxxwrap-julia-0.7", sources, getscript("0.7.0-beta"), platforms, products, dependencies)
51+
version_number = get(ENV, "TRAVIS_TAG", "")
52+
if version_number == ""
53+
version_number = "v0.99"
54+
end
55+
download_info_07 = build_tarballs(ARGS, "libcxxwrap-julia-0.7", VersionNumber(version_number), sources, getscript("0.7.0-beta"), platforms, products, dependencies)
5256
@show download_info_07

0 commit comments

Comments
 (0)