lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master d7f62bb: Avoid strange error when installing


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master d7f62bb: Avoid strange error when installing dependencies for the CI build
Date: Fri, 24 Jul 2020 19:51:37 -0400 (EDT)

branch: master
commit d7f62bbdde178df6af34992671e52c9ee5e5fd7d
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Avoid strange error when installing dependencies for the CI build
    
    Although it worked previously, something must have changed in the
    virtual Ubuntu 20.04 environment, as "apt-get install" started failing
    due to mysterious errors during libgcc-s1:i386 (dependency of libc:i386,
    itself a dependency of wine32) package installation.
    
    Work around this by installing this package first, before all the
    others.
---
 .github/workflows/ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b9f4750..c6302f0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,6 +25,7 @@ jobs:
         run: |
           sudo dpkg --add-architecture i386
           sudo apt-get update
+          sudo apt-get install --assume-yes libgcc-s1:i386 # Avoid 
configuratiion error later
           sudo apt-get --assume-yes install \
             automake bc bsdmainutils bzip2 curl cvs default-jre \
             g++-mingw-w64-i686 g++-multilib git jing libarchive-tools \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]