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

[Hwloc] Build for experimental platforms #3190

Merged
merged 1 commit into from
Jun 20, 2021
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
8 changes: 4 additions & 4 deletions H/Hwloc/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
using BinaryBuilder

name = "Hwloc"
version = v"2.4.1"
version = v"2.5.0"

# Collection of sources required to build hwloc
sources = [
ArchiveSource("https://download.open-mpi.org/release/hwloc/v2.4/hwloc-$(version).tar.bz2", "392421e69f26120c8ab95d151fe989f2b4b69dab3c7735741c4e0a6d7de5de63")
ArchiveSource("https://download.open-mpi.org/release/hwloc/v2.5/hwloc-$(version).tar.bz2", "a9cf9088be085bdd167c78b73ddf94d968fa73a8ccf62172481ba9342c4f52c8")
]

# Bash recipe for building across all platforms
Expand All @@ -20,7 +20,7 @@ make install

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
platforms = supported_platforms(;experimental=true)

# The products that we will ensure are always built
products = [
Expand All @@ -32,5 +32,5 @@ dependencies = [
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies)
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")