]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
try to fix 32-bit test on github actions 2440/head
authorYann Collet <cyan@fb.com>
Mon, 21 Dec 2020 23:47:20 +0000 (15:47 -0800)
committerYann Collet <cyan@fb.com>
Mon, 21 Dec 2020 23:47:20 +0000 (15:47 -0800)
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.

.github/workflows/generic-dev.yml

index 8882fcc0b6aa5ce8e7f55bda59c6b1bdefe4806c..621aea32cf7b37f972b89cdda75f6b2e782bf6e8 100644 (file)
@@ -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: