]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
add make test for 32bit 3509/head
authorDanielle Rozenblit <drozenblit@fb.com>
Wed, 15 Feb 2023 14:03:02 +0000 (06:03 -0800)
committerDanielle Rozenblit <drozenblit@fb.com>
Wed, 15 Feb 2023 14:03:02 +0000 (06:03 -0800)
.github/workflows/dev-long-tests.yml

index 22416e2cd67439c37f8de01b00621c7445d76fa4..735e6372b67c3c70c8d274e5b660209cb3f013ef 100644 (file)
@@ -38,6 +38,20 @@ jobs:
     - name: OS-X test
       run: make test # make -c lib all doesn't work because of the fact that it's not a tty
 
+  # lasts ~24mn
+  make-test-32bit:
+    runs-on: ubuntu-latest
+    env:
+      DEVNULLRIGHTS: 1
+      READFROMBLOCKDEVICE: 1
+    steps:
+    - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # tag=v3
+    - name: make test
+      run: |
+        sudo apt-get -qqq update
+        make libc6install
+        CFLAGS="-m32" make test
+
   no-intrinsics-fuzztest:
     runs-on: ubuntu-latest
     steps: