Skip to content

Commit 39ca68d

Browse files
committed
Print out all the installed libraries for diagnosis.
1 parent 8ecf9b3 commit 39ca68d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,9 @@ jobs:
409409
max_attempts: 3
410410
command: |
411411
python scripts/gha/install_prereqs_desktop.py --gha_build --arch '${{ matrix.architecture }}' --ssl boringssl
412-
412+
if [[ "${{ matrix.architecture }}" == "x86" ]]; then
413+
find /usr/lib /usr/lib/gcc -print
414+
fi
413415
- name: Export verbose flag
414416
shell: bash
415417
run: |

scripts/gha/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def install_x86_support_libraries(gha_build=False):
238238
packages = ['gcc-multilib', 'g++-multilib', 'libglib2.0-dev:i386',
239239
'libsecret-1-dev:i386', 'libpthread-stubs0-dev:i386',
240240
'libssl-dev:i386', 'libsecret-1-0:i386', 'libgcc-s1:i386',
241-
'gcc-10-base:i386', 'libgcc-s1-i386-cross']
241+
'gcc-10-base:i386']
242242
remove_packages = []
243243

244244
# First check if these packages exist on the machine already

0 commit comments

Comments
 (0)