From: Yann Collet Date: Mon, 21 Dec 2020 23:47:20 +0000 (-0800) Subject: try to fix 32-bit test on github actions X-Git-Tag: v1.4.9^2~42^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1225b186ea716cff502110bbecc238d60abc25d;p=thirdparty%2Fzstd.git try to fix 32-bit test on github actions for some reasons, this test fails at _installing_ 32-bit dependencies using the exact same command that actually works in other tests !!? It's unclear why it fails repeateadly for this test only. Try another way to install dependencies to fix that. --- diff --git a/.github/workflows/generic-dev.yml b/.github/workflows/generic-dev.yml index 8882fcc0b..621aea32c 100644 --- a/.github/workflows/generic-dev.yml +++ b/.github/workflows/generic-dev.yml @@ -41,7 +41,8 @@ jobs: - uses: actions/checkout@v2 - name: make check on 32-bit run: | - make libc6install + sudo apt update + APT_PACKAGES="gcc-multilib" make apt-install CFLAGS="-m32 -O1 -fstack-protector" make check V=1 gcc-6-7-libzstd: