From d88961d4f1f943f057c2bded8fe132caac038827 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 11 Dec 2023 18:57:48 +0100 Subject: [PATCH] CI/distcheck: run full tests To be able to detect missing files better, this now runs the full CI test suite. If done before, it would have detected #12462 before release. --- .github/workflows/distcheck.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/distcheck.yml b/.github/workflows/distcheck.yml index 8b908e0a5bc631..6c050f517407ff 100644 --- a/.github/workflows/distcheck.yml +++ b/.github/workflows/distcheck.yml @@ -50,7 +50,7 @@ jobs: pushd curl-99.98.97 ./configure --prefix=$HOME/temp --without-ssl make - make TFLAGS=1 test + make test-ci make install popd # basic check of the installed files @@ -75,7 +75,7 @@ jobs: pushd build ../curl-99.98.97/configure --without-ssl make - make TFLAGS='-p 1 1139' test + make test-ci popd rm -rf build rm -rf curl-99.98.97 @@ -98,7 +98,7 @@ jobs: pushd build ../configure --without-ssl --enable-debug "--prefix=${PWD}/pkg" make -j3 - make -j3 TFLAGS=1279 test + make -j3 test-ci make -j3 install name: 'verify out-of-tree autotools debug build'