Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Upgrade the FreeBSD buildbots to FreeBSD 12 #223

Merged
merged 1 commit into from
Aug 9, 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
5 changes: 2 additions & 3 deletions master/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ def build_names(platform, arch, name):
macos_names = build_names("macos", ["x86_64"], ["macmini", "macmini2", "macmini3"])
macos_names += build_names("macos", ["x86_64"], ["macmini-x64-%d"%(idx) for idx in range(1,7)])
macos_names += build_names("macos", ["aarch64"], ["macmini-aarch64-%d"%(idx) for idx in range(1,3)])
freebsd_names = build_names("freebsd", ["x86_64"], ["amdci6_%d"%(idx) for idx in range(1,4)])
freebsd_names += build_names("freebsd", ["x86_64"], ["amdci6_%d"%(idx) for idx in range(4,10)])
freebsd_names = build_names("freebsd", ["x86_64"], ["amdci6_%d"%(idx) for idx in range(4,7)])
all_names = win_names + linux_names + musl_names + macos_names + freebsd_names

# Define all the attributes we'll use in our buildsteps
Expand Down Expand Up @@ -89,7 +88,7 @@ def build_names(platform, arch, name):
os_name = "freebsd"
os_pkg_ext = "tar.gz"
make_cmd = "gmake"
# flags += 'USE_BINARYBUILDER_LIBUV=0 ' # On FreeBSD 12 and later: https://github.com/JuliaLang/julia/issues/34627
flags += 'USE_BINARYBUILDER_LIBUV=0 ' # On FreeBSD 12 and later: https://github.com/JuliaLang/julia/issues/34627

elif name[:4] == "musl":
os_name = "musl"
Expand Down