Skip to content

Commit cda77f0

Browse files
authored
Fix Linux x86 package installation on GH runners (#862)
* Change linux x86 workaround: manually specify i386 architecture when installing libsecret
1 parent 1a27900 commit cda77f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gha/build_desktop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def install_x86_support_libraries(gha_build=False):
9494
# packages aren't modified. (Once the workaround above is removed, this can
9595
# be removed as well.)
9696
# Note: "-f" = "fix" - let apt do what it needs to do to fix dependencies.
97-
utils.run_command(['apt', 'install', '-f', '-V', '-y', 'libsecret-1-dev'],
97+
utils.run_command(['apt', 'install', '-f', '-V', '-y', 'libsecret-1-dev:i386'],
9898
as_root=True, check=True)
9999

100100

0 commit comments

Comments
 (0)