summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2021-10-08 20:43:19 +0200
committerMarc Hoersken <info@marc-hoersken.de>2021-10-27 12:33:18 +0200
commit74d46aee28a209315902b1dc385bb1e73e8159c1 (patch)
treeb9e7bc96a80a2b13a07b5917eb3bf579e16344b8
parentf0ab8a631aeaa4cb458d55f25313080416adf43e (diff)
downloadcurl-74d46aee28a209315902b1dc385bb1e73e8159c1.tar.gz
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
-rw-r--r--.azure-pipelines.yml2
-rw-r--r--.circleci/config.yml4
-rw-r--r--.cirrus.yml2
-rw-r--r--.github/workflows/linux-hyper.yml4
-rw-r--r--.github/workflows/macos.yml4
-rw-r--r--appveyor.yml2
6 files changed, 9 insertions, 9 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 2070b407f..52e69c8d2 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -88,7 +88,7 @@ stages:
env:
MAKEFLAGS: "-j 2"
- - script: make test-nonflaky
+ - script: make V=1 test-ci
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 485deca7a..92112c8ea 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -33,11 +33,11 @@ commands:
build:
steps:
- - run: make
+ - run: make V=1
test:
steps:
- - run: make test-ci
+ - run: make V=1 test-ci
executors:
ubuntu:
diff --git a/.cirrus.yml b/.cirrus.yml
index d958ee1c3..587e0ae94 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -68,7 +68,7 @@ freebsd_task:
- find . -type d -exec chmod 777 {} \;
# 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.
- - 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:
- make V=1 install
diff --git a/.github/workflows/linux-hyper.yml b/.github/workflows/linux-hyper.yml
index 446405942..4a02753b0 100644
--- a/.github/workflows/linux-hyper.yml
+++ b/.github/workflows/linux-hyper.yml
@@ -38,10 +38,10 @@ jobs:
- 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'
- - run: make test-ci
+ - run: make V=1 test-ci
name: 'test'
env:
LD_LIBRARY_PATH: $HOME/hyper/target/debug:/usr/local/lib
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 28f52f4eb..400f469cd 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -81,10 +81,10 @@ jobs:
# -Wvla is caused by brotli
CFLAGS: "-Wno-vla -mmacosx-version-min=${{ matrix.build.macosx-version-min }}"
- - run: make
+ - run: make V=1
name: 'make'
- - run: make test-ci
+ - run: make V=1 test-ci
name: 'test'
env:
TFLAGS: "${{ matrix.build.tflags }} ~1452"
diff --git a/appveyor.yml b/appveyor.yml
index d3c48a92a..9cfa67b03 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -289,7 +289,7 @@ build_script:
..\builds\libcurl-vc15-x64-%PATHPART%-dll-ssl-dll-ipv6-sspi\bin\curl.exe -V
) else (
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 %BUILD_SYSTEM%==CMake (