Skip to content
Open
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
4 changes: 2 additions & 2 deletions ci/utils/install_boost_tbb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

set -euo pipefail
Expand All @@ -18,7 +18,7 @@ if [ -f /etc/os-release ]; then
elif [[ "$ID" == "ubuntu" ]]; then
echo "Detected Ubuntu. Installing Boost and TBB via apt..."
apt-get update
apt-get install -y libboost-dev libtbb-dev
apt-get install -y libboost-iostreams-dev libboost-serialization-dev libtbb-dev
else
echo "Unknown OS: $ID. Please install Boost development libraries manually."
exit 1
Expand Down
Loading