From: Viktor Szakats Date: Tue, 22 Oct 2024 12:40:26 +0000 (+0200) Subject: GHA/macos: use `test-torture` target for torture tests X-Git-Tag: curl-8_11_0~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52851d32568719e4d4e91756b78bf233db77086a;p=thirdparty%2Fcurl.git GHA/macos: use `test-torture` target for torture tests They used `test-ci` before this patch. Closes #15369 --- diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9c4d574858..9c037efb8a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -339,9 +339,9 @@ jobs: source $HOME/venv/bin/activate rm -f $HOME/.curlrc if [ -n '${{ matrix.build.configure }}' ]; then - make -C bld V=1 test-ci + make -C bld V=1 ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} else - cmake --build bld --target test-ci + cmake --build bld --target ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} fi - name: 'build examples'