From 6f2e29a234c9f9ca63f1dd2748933a03f03ac731 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 11 Oct 2024 17:30:55 -0700 Subject: [PATCH] measure if -O2 makes the test complete faster --- .github/workflows/dev-long-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-long-tests.yml b/.github/workflows/dev-long-tests.yml index 3c2d1183b..e4564c1d8 100644 --- a/.github/workflows/dev-long-tests.yml +++ b/.github/workflows/dev-long-tests.yml @@ -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