From: Yann Collet Date: Sat, 12 Oct 2024 01:01:28 +0000 (-0700) Subject: attempt parallel test running with -j X-Git-Tag: v1.5.7^2~75^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4167%2Fhead;p=thirdparty%2Fzstd.git attempt parallel test running with -j --- 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