lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master 7c3ae24 2/2: Work around Ubuntu problem in Gi


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master 7c3ae24 2/2: Work around Ubuntu problem in GitHub Actions environment
Date: Fri, 25 Sep 2020 18:39:27 -0400 (EDT)

branch: master
commit 7c3ae249135b66f4319ce957bd4833c267804ed0
Author: Ilya Sinitsyn <isinitsyn@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Work around Ubuntu problem in GitHub Actions environment
    
    Disable immediate configuration at apt level to work around the error:
    
    Could not perform immediate configuration on 'libgcc-s1:i386'. Please
    see man 5 apt.conf under APT::Immediate-Configure for details. (2)
    
    See https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1871268
    which is unresolved as of this writing.
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 28a14be..ee39d98 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
         run: |
           sudo dpkg --add-architecture i386
           sudo apt-get update
-          sudo apt-get --assume-yes install libgcc-s1:i386 # Avoid 
configuration error later
+          sudo apt-get dist-upgrade -o APT::Immediate-Configure=0 # Avoid 
configuration 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]