From 52851d32568719e4d4e91756b78bf233db77086a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 22 Oct 2024 14:40:26 +0200 Subject: [PATCH] GHA/macos: use `test-torture` target for torture tests They used `test-ci` before this patch. Closes #15369 --- .github/workflows/macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'