This is an automated email from the ASF dual-hosted git repository.

slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git


The following commit(s) were added to refs/heads/main by this push:
     new a4f3d7007 Correct release-candidate dependency installation
a4f3d7007 is described below

commit a4f3d7007e440c8932a3331827d557b9fe40065f
Author: Steve Lawrence <[email protected]>
AuthorDate: Wed Apr 2 13:45:33 2025 -0400

    Correct release-candidate dependency installation
    
    - It seems the GitHub action ubuntu image has an outdated package index
      relative to the mirrors so some dependencies cannot be found. This
      adds apt-get update to ensure the package index is correct
    - We also need to install wine32 instead of wine, this requires the i386
      architecture is added
    
    DAFFODIL-2971
---
 .github/workflows/release-candidate.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/release-candidate.yml 
b/.github/workflows/release-candidate.yml
index 80904ffe3..7431e8700 100644
--- a/.github/workflows/release-candidate.yml
+++ b/.github/workflows/release-candidate.yml
@@ -58,7 +58,9 @@ jobs:
 
       - name: Install Dependencies
         run: |
-          sudo apt-get install -y libmxml-dev rpm wine winetricks
+          sudo dpkg --add-architecture i386
+          sudo apt-get update
+          sudo apt-get install -y libmxml-dev rpm wine32 winetricks
           sudo locale-gen $LANG
 
           INNO_SETUP_EXE="innosetup-6.4.1.exe"

Reply via email to