CI: more use of test-ci make target and verbose output

Replace test-nonflaky with test-ci and enable verbose output
in all remaining CIs except Zuul which is customized a lot.

Reviewed-by: Daniel Stenberg
Reviewed-by: Jay Satiro

Follow up to #7785
Closes #7832
This commit is contained in:
Marc Hoersken 2021-10-08 20:43:19 +02:00
parent f0ab8a631a
commit 74d46aee28
No known key found for this signature in database
GPG Key ID: 61E03CBED7BC859E
6 changed files with 9 additions and 9 deletions

View File

@ -88,7 +88,7 @@ stages:
env: env:
MAKEFLAGS: "-j 2" MAKEFLAGS: "-j 2"
- script: make test-nonflaky - script: make V=1 test-ci
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"

View File

@ -33,11 +33,11 @@ commands:
build: build:
steps: steps:
- run: make - run: make V=1
test: test:
steps: steps:
- run: make test-ci - run: make V=1 test-ci
executors: executors:
ubuntu: ubuntu:

View File

@ -68,7 +68,7 @@ freebsd_task:
- find . -type d -exec chmod 777 {} \; - find . -type d -exec chmod 777 {} \;
# The OpenSSH server instance for the testsuite cannot be started on FreeBSD, # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
# therefore the SFTP and SCP tests are disabled right away from the beginning. # therefore the SFTP and SCP tests are disabled right away from the beginning.
- sudo -u nobody make V=1 TFLAGS="-n -r -u !SFTP !SCP" test-nonflaky - sudo -u nobody make V=1 TFLAGS="-n !SFTP !SCP" test-ci
install_script: install_script:
- make V=1 install - make V=1 install

View File

@ -38,10 +38,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: ./buildconf && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make - run: ./buildconf && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
name: 'configure and build' name: 'configure and build'
- run: make test-ci - run: make V=1 test-ci
name: 'test' name: 'test'
env: env:
LD_LIBRARY_PATH: $HOME/hyper/target/debug:/usr/local/lib LD_LIBRARY_PATH: $HOME/hyper/target/debug:/usr/local/lib

View File

@ -81,10 +81,10 @@ jobs:
# -Wvla is caused by brotli # -Wvla is caused by brotli
CFLAGS: "-Wno-vla -mmacosx-version-min=${{ matrix.build.macosx-version-min }}" CFLAGS: "-Wno-vla -mmacosx-version-min=${{ matrix.build.macosx-version-min }}"
- run: make - run: make V=1
name: 'make' name: 'make'
- run: make test-ci - run: make V=1 test-ci
name: 'test' name: 'test'
env: env:
TFLAGS: "${{ matrix.build.tflags }} ~1452" TFLAGS: "${{ matrix.build.tflags }} ~1452"

View File

@ -289,7 +289,7 @@ build_script:
..\builds\libcurl-vc15-x64-%PATHPART%-dll-ssl-dll-ipv6-sspi\bin\curl.exe -V ..\builds\libcurl-vc15-x64-%PATHPART%-dll-ssl-dll-ipv6-sspi\bin\curl.exe -V
) else ( ) else (
if %BUILD_SYSTEM%==autotools ( if %BUILD_SYSTEM%==autotools (
bash.exe -e -l -c "cd /c/projects/curl && ./buildconf && ./configure %CONFIG_ARGS% && make && make examples && cd tests && make" bash.exe -e -l -c "cd /c/projects/curl && ./buildconf && ./configure %CONFIG_ARGS% && make V=1 && make V=1 examples && cd tests && make V=1"
))))) )))))
- if %TESTING%==ON ( - if %TESTING%==ON (
if %BUILD_SYSTEM%==CMake ( if %BUILD_SYSTEM%==CMake (