]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
measure if -O2 makes the test complete faster
authorYann Collet <cyan@fb.com>
Sat, 12 Oct 2024 00:30:55 +0000 (17:30 -0700)
committerYann Collet <cyan@fb.com>
Sat, 12 Oct 2024 00:30:55 +0000 (17:30 -0700)
.github/workflows/dev-long-tests.yml

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