diff options
author | Casey Bodley <cbodley@users.noreply.github.com> | 2024-06-27 17:35:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 17:35:32 +0200 |
commit | 0a1d0933ad393691b894e83dfc824927da201b46 (patch) | |
tree | febe866d64976bc7e4d21c9c649c23aae7e838c6 /install-deps.sh | |
parent | Merge PR #53755 into main (diff) | |
parent | submodule: Remove boost_redis submodule (diff) | |
download | ceph-0a1d0933ad393691b894e83dfc824927da201b46.tar.xz ceph-0a1d0933ad393691b894e83dfc824927da201b46.zip |
Merge pull request #57581 from adamemerson/wip-boost-1.85
build: Bump boost version to 1.85
Reviewed-by: Casey Bodley <cbodley@redhat.com>
Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
Diffstat (limited to 'install-deps.sh')
-rwxr-xr-x | install-deps.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/install-deps.sh b/install-deps.sh index 0f112d2d92d..d5eafba48cc 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -141,7 +141,7 @@ function install_pkg_on_ubuntu { fi } -boost_ver=1.82 +boost_ver=1.85 function clean_boost_on_ubuntu { ci_debug "Running clean_boost_on_ubuntu() in install-deps.sh" @@ -198,7 +198,7 @@ function install_boost_on_ubuntu { fi local codename=$1 local project=libboost - local sha1=2804368f5b807ba8334b0ccfeb8af191edeb996f + local sha1=55f34507d322314fb0294629b7c0bb406de07aec install_pkg_on_ubuntu \ $project \ $sha1 \ @@ -220,6 +220,7 @@ function install_boost_on_ubuntu { ceph-libboost-test${boost_ver}-dev \ ceph-libboost-thread${boost_ver}-dev \ ceph-libboost-timer${boost_ver}-dev \ + ceph-libboost-url${boost_ver}-dev \ || ci_debug "ceph-libboost package unavailable, you can build the submodule" } |