From: Christian Storm <[email protected]>

Make the CI build print out commands executed to
allow for better contextualization of build errors.

Signed-off-by: Christian Storm <[email protected]>
---
 .github/workflows/main.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 891fc45..49d887a 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -123,7 +123,7 @@ jobs:
         run: |
           pushd build >/dev/null
           ../configure
-          make check -j $(nproc)
+          make check -j $(nproc) V=1
           make check-valgrind -j $(nproc)
           sudo make install
           time bats --tap ../tests
@@ -137,28 +137,28 @@ jobs:
           export PKG_CONFIG_LIBDIR=/usr/lib/i386-linux-gnu
           ../configure --with-gnuefi-lib-dir=/usr/lib32 CFLAGS=-m32 \
               host_alias=i586-linux
-          make check -j $(nproc)
+          make check -j $(nproc) V=1
       - name: Build arm64
         if: ${{ matrix.target == 'arm64' }}
         run: |
           cd build
           ../configure --host=aarch64-linux-gnu \
               PKG_CONFIG=/usr/bin/aarch64-linux-gnu-pkg-config
-          make check -j $(nproc)
+          make check -j $(nproc) V=1
       - name: Build arm
         if: ${{ matrix.target == 'arm' }}
         run: |
           cd build
           ../configure --host=arm-linux-gnueabihf \
               PKG_CONFIG=/usr/bin/arm-linux-gnueabihf-pkg-config
-          make check -j $(nproc)
+          make check -j $(nproc) V=1
       - name: Build riscv64
         if: ${{ matrix.target == 'riscv64' }}
         run: |
           cd build
           ../configure --host=riscv64-linux-gnu \
               PKG_CONFIG=/usr/bin/riscv64-linux-gnu-pkg-config
-          make check -j $(nproc)
+          make check -j $(nproc) V=1
       - name: Run cppcheck
         if: ${{ matrix.target == 'cppcheck' }}
         run: |
-- 
2.44.0

-- 
You received this message because you are subscribed to the Google Groups "EFI 
Boot Guard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/efibootguard-dev/836CF8D9-A717-4D08-B6C9-98B28149991E%40siemens.com.

Reply via email to