1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-20 02:42:09 +03:00

ci/GHA: fix verbose option for autotools jobs (#1376)

Also enable verbose for macOS `make` step.
This commit is contained in:
Viktor Szakats
2024-04-25 17:00:51 +02:00
committed by GitHub
parent 4fa6921413
commit 499b27ae83

View File

@@ -205,7 +205,7 @@ jobs:
- name: 'autotools tests' - name: 'autotools tests'
if: ${{ matrix.build == 'autotools' && !matrix.target }} if: ${{ matrix.build == 'autotools' && !matrix.target }}
timeout-minutes: 10 timeout-minutes: 10
run: make -C bld check VERBOSE=1 run: make -C bld check V=1
- name: 'autotools distcheck' - name: 'autotools distcheck'
if: ${{ matrix.target == 'distcheck' }} if: ${{ matrix.target == 'distcheck' }}
timeout-minutes: 10 timeout-minutes: 10
@@ -331,7 +331,7 @@ jobs:
--with-crypto=openssl \ --with-crypto=openssl \
--disable-docker-tests --disable-docker-tests
make -j3 make -j3
make check VERBOSE=1 make check V=1
- name: 'cmake' - name: 'cmake'
if: ${{ matrix.build == 'cmake' }} if: ${{ matrix.build == 'cmake' }}
@@ -415,7 +415,7 @@ jobs:
if: ${{ matrix.build == 'autotools' }} if: ${{ matrix.build == 'autotools' }}
timeout-minutes: 10 timeout-minutes: 10
shell: msys2 {0} shell: msys2 {0}
run: make -C bld check VERBOSE=1 run: make -C bld check V=1
- name: 'cmake configure' - name: 'cmake configure'
if: ${{ matrix.build == 'cmake' }} if: ${{ matrix.build == 'cmake' }}
shell: msys2 {0} shell: msys2 {0}
@@ -566,11 +566,11 @@ jobs:
- name: 'autotools build' - name: 'autotools build'
if: ${{ matrix.build == 'autotools' }} if: ${{ matrix.build == 'autotools' }}
run: make -C bld -j3 run: make -C bld -j3 V=1
- name: 'autotools tests' - name: 'autotools tests'
if: ${{ matrix.build == 'autotools' }} if: ${{ matrix.build == 'autotools' }}
timeout-minutes: 10 timeout-minutes: 10
run: make -C bld check VERBOSE=1 run: make -C bld check V=1
- name: 'cmake configure' - name: 'cmake configure'
if: ${{ matrix.build == 'cmake' }} if: ${{ matrix.build == 'cmake' }}
run: | run: |
@@ -666,7 +666,7 @@ jobs:
--with-crypto=openssl \ --with-crypto=openssl \
--disable-docker-tests --disable-docker-tests
make -j3 make -j3
make check VERBOSE=1 make check V=1
build_omnios: build_omnios:
name: 'OmniOS (autotools, openssl, gcc, amd64)' name: 'OmniOS (autotools, openssl, gcc, amd64)'
@@ -686,4 +686,4 @@ jobs:
--with-crypto=openssl \ --with-crypto=openssl \
--disable-docker-tests --disable-docker-tests
gmake -j3 gmake -j3
gmake check VERBOSE=1 gmake check V=1