Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI/distcheck: run full tests #12503

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/distcheck.yml
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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'

Expand Down