summaryrefslogtreecommitdiff
path: root/.github
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 /.github
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
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux-hyper.yml4
-rw-r--r--.github/workflows/macos.yml4
2 files changed, 4 insertions, 4 deletions
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"