From e6740355e35fa5695cb606e7bbda41b595175b3a Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 11 Oct 2024 18:01:28 -0700 Subject: [PATCH] attempt parallel test running with -j --- .github/workflows/dev-long-tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-long-tests.yml b/.github/workflows/dev-long-tests.yml index e4564c1d8..deb5242b0 100644 --- a/.github/workflows/dev-long-tests.yml +++ b/.github/workflows/dev-long-tests.yml @@ -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 -- 2.47.2