]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
attempt parallel test running with -j 4167/head
authorYann Collet <cyan@fb.com>
Sat, 12 Oct 2024 01:01:28 +0000 (18:01 -0700)
committerYann Collet <cyan@fb.com>
Sat, 12 Oct 2024 01:01:28 +0000 (18:01 -0700)
.github/workflows/dev-long-tests.yml

index e4564c1d877f87e59c958e26ed1550800efc7dd2..deb5242b016cdef897da4d9d345b425cdf0af174 100644 (file)
@@ -46,11 +46,12 @@ jobs:
       READFROMBLOCKDEVICE: 1
     steps:
     - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
-    - name: make test # note: make -j test seems to break when associated with `-m32`
+    - name: make test # note: `make -j test success` seems to require a clean state
       run: |
         sudo apt-get -qqq update
         make libc6install
-        CFLAGS="-m32 -O2" make test V=1
+        make clean
+        CFLAGS="-m32 -O2" make -j test V=1
 
   no-intrinsics-fuzztest:
     runs-on: ubuntu-latest