Skip to content

Commit e36be60

Browse files
committed
Don't remove PCRE packages
1 parent fd27df8 commit e36be60

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/gha/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,11 @@ def install_x86_support_libraries(gha_build=False):
252252
check=True)
253253
run_command(['apt', 'update'], as_root=True, check=True)
254254
run_command(['apt', 'install', 'aptitude'], as_root=True, check=True)
255-
if gha_build:
256-
# Remove libpcre to prevent package conflicts.
257-
# Only remove packages on GitHub runners.
258-
remove_packages = ['libpcre2-dev:amd64', 'libpcre2-32-0:amd64',
259-
'libpcre2-8-0:amd64', 'libpcre2-16-0:amd64']
255+
#if gha_build:
256+
# Remove libpcre to prevent package conflicts.
257+
# Only remove packages on GitHub runners.
258+
# remove_packages = ['libpcre2-dev:amd64', 'libpcre2-32-0:amd64',
259+
# 'libpcre2-8-0:amd64', 'libpcre2-16-0:amd64']
260260
# Note: With aptitude, you can remove package 'xyz' by specifying 'xyz-'
261261
# in the package list.
262262
run_command(['aptitude', 'install', '-V', '-y'] + packages +

0 commit comments

Comments
 (0)