Skip to content

Commit c5afbac

Browse files
mrc0mmandbluca
authored andcommitted
ci: explicitly install python3-lldb-$COMPILER_VERSION
To avoid apt complaining: + apt-get -y install clang-15 lldb-15 lld-15 clangd-15 Reading package lists... Building dependency tree... Reading state information... Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: python3-lldb-14 : Conflicts: python3-lldb-x.y python3-lldb-15 : Conflicts: python3-lldb-x.y E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
1 parent f1f331a commit c5afbac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ if [[ "$COMPILER" == clang ]]; then
8787
"$RELEASE" "$RELEASE" "$COMPILER_VERSION" >/etc/apt/sources.list.d/llvm-toolchain.list
8888
fi
8989

90-
PACKAGES+=("clang-$COMPILER_VERSION" "lldb-$COMPILER_VERSION" "lld-$COMPILER_VERSION" "clangd-$COMPILER_VERSION")
90+
PACKAGES+=("clang-$COMPILER_VERSION" "lldb-$COMPILER_VERSION" "python3-lldb-$COMPILER_VERSION" "lld-$COMPILER_VERSION" "clangd-$COMPILER_VERSION")
9191
elif [[ "$COMPILER" == gcc ]]; then
9292
CC="gcc-$COMPILER_VERSION"
9393
CXX="g++-$COMPILER_VERSION"

0 commit comments

Comments
 (0)