From da5cdfed7cb5b0240db57b44e21d9258c73bf4b8 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 15 May 2023 16:19:39 -0700 Subject: [PATCH] ci/gha: fix cross-i386 As of today, installing fails with > libc6:i386 : Depends: libgcc-s1:i386 but it is not going to be installed Add the package explicitly to work around that. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8136d6488..4e830e53a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -120,7 +120,7 @@ jobs: sudo add-apt-repository -y ppa:criu/ppa # apt-add-repository runs apt update so we don't have to. - sudo apt -q install libseccomp-dev libseccomp-dev:i386 gcc-multilib criu + sudo apt -q install libseccomp-dev libseccomp-dev:i386 gcc-multilib libgcc-s1:i386 criu - name: install go uses: actions/setup-go@v4