Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LCIO_Julia_Wrapper] version bump #2181

Merged
merged 2 commits into from
Nov 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions L/LCIO_Julia_Wrapper/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using BinaryBuilder
using Pkg

julia_version = v"1.5.3"
name = "LCIO_Julia_Wrapper"
version = v"0.12.2"
version = v"0.13.0"

# Collection of sources required to build LCIOWrapBuilder
sources = [
GitSource("https://github.com/jstrube/LCIO_Julia_Wrapper.git", "4945dc1d1ae875b4ec22884a7e5a72ae212f0c77")
GitSource("https://github.com/jstrube/LCIO_Julia_Wrapper.git", "d0841c089dcb0a006a6f241a1716369760020e52")
]

# Bash recipe for building across all platforms
Expand All @@ -24,9 +25,10 @@ install_license $WORKSPACE/srcdir/LCIO_Julia_Wrapper/LICENSE
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = Platform[
Platform("x86_64", "linux"; libc="glibc", cxxstring_abi = "cxx11"),
Platform("x86_64", "macos"; cxxstring_abi = "cxx11")
Platform("x86_64", "linux"; libc="glibc"),
Platform("x86_64", "macos")
]
platforms = expand_cxxstring_abis(platforms)

# The products that we will ensure are always built
products = [
Expand All @@ -35,9 +37,10 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
Dependency(PackageSpec(name="libcxxwrap_julia_jll",version=v"0.8")),
Dependency(PackageSpec(name="LCIO_jll", version=v"2.15.3")),
BuildDependency(PackageSpec(name="Julia_jll",version=v"1.4.1"))
Dependency(PackageSpec(name="libcxxwrap_julia_jll",version=v"0.8.5")),
Dependency(PackageSpec(name="LCIO_jll", version=v"2.15.4")),
BuildDependency(PackageSpec(name="libjulia_jll", version=julia_version))
]

build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"7")
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
preferred_gcc_version=v"7", julia_compat = "^$(julia_version.major).$(julia_version.minor)")