public inbox for kdevops@lists.linux.dev
 help / color / mirror / Atom feed
From: Daniel Gomez <da.gomez@kernel.org>
To: Luis Chamberlain <mcgrof@kernel.org>,
	 Chuck Lever <chuck.lever@oracle.com>
Cc: kdevops@lists.linux.dev, Daniel Gomez <da.gomez@kernel.org>,
	 Daniel Gomez <da.gomez@samsung.com>
Subject: [PATCH v2 05/10] .github/workflows/fstests.yml: enable make verbosity
Date: Fri, 02 May 2025 14:13:22 +0200	[thread overview]
Message-ID: <20250502-ansible_cfg_inventory-v2-5-d3c19ff4aa6e@samsung.com> (raw)
In-Reply-To: <20250502-ansible_cfg_inventory-v2-0-d3c19ff4aa6e@samsung.com>

From: Daniel Gomez <da.gomez@samsung.com>

This prints the commands as well as the Makefile target being run.

Signed-off-by: Daniel Gomez <da.gomez@samsung.com>
---
 .github/workflows/fstests.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/fstests.yml b/.github/workflows/fstests.yml
index e06f5e009c6a380c82321e9437494549ec42cf62..8f231169a896edc2ad5ab080a56701a9664ee5b3 100644
--- a/.github/workflows/fstests.yml
+++ b/.github/workflows/fstests.yml
@@ -44,23 +44,23 @@ jobs:
 
       - name: Run kdevops make
         run: |
-          make -j$(nproc)
+          make V=1 -j$(nproc)
 
       - name: Run kdevops make bringup
         run: |
-          make bringup
+          make V=1 bringup
 
       - name: Build linux and boot test nodes on test kernel
         run: |
-          make linux
+          make V=1 linux
 
       - name: Build fstests
         run: |
-          make fstests
+          make V=1 fstests
 
       - name: Run just one fstest to verify we tests and test collection works
         run: |
-          make fstests-baseline TESTS=generic/003
+          make V=1 fstests-baseline TESTS=generic/003
           echo "ok" > ci.result
           find workflows/fstests/results/last-run -name xunit_results.txt -type f -exec cat {} \; > ci.commit_extra || true
           if ! grep -E "failures, [1-9]|errors, [1-9]" ci.commit_extra; then
@@ -70,7 +70,7 @@ jobs:
       - name: Get systemd journal files
         if: always() # This ensures the step runs even if previous steps failed
         run: |
-          make journal-dump
+          make V=1 journal-dump
 
       - name: Start SSH Agent
         if: always()  # Ensure this step runs even if previous steps failed
@@ -81,7 +81,7 @@ jobs:
       - name: Build our kdevops archive results
         if: always() # This ensures the step runs even if previous steps failed
         run: |
-          make ci-archive
+          make V=1 ci-archive
 
       - name: Upload our kdevops results archive
         if: always() # This ensures the step runs even if previous steps failed
@@ -94,4 +94,4 @@ jobs:
       - name: Run kdevops make destroy
         if: always()  # This ensures the step runs even if previous steps failed
         run: |
-          make destroy
+          make V=1 destroy

-- 
2.49.0


  parent reply	other threads:[~2025-05-02 12:13 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-02 12:13 [PATCH v2 00/10] Define Ansible inventory in the Ansible Configuration file Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 01/10] playbooks: fix playbook name for all hosts plays Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 02/10] playbooks: fix playbook name for localhost plays Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 03/10] Makefile: use long form of limit argument for clarity Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 04/10] Makefile: print target when debug Daniel Gomez
2025-05-02 12:13 ` Daniel Gomez [this message]
2025-05-02 12:13 ` [PATCH v2 06/10] ansible_cfg: add inventory support Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 07/10] gen_hosts: templates: add localhost to all hosts Daniel Gomez
2025-05-02 18:56   ` Chuck Lever
2025-05-03 17:45     ` Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 08/10] Makefile: use inventory from ansible.cfg Daniel Gomez
2025-05-02 13:47   ` Daniel Gomez
2025-05-02 16:08     ` Chuck Lever
2025-05-02 19:11       ` Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 09/10] ansible_cfg: add support to change ansible.cfg file location Daniel Gomez
2025-05-02 12:13 ` [PATCH v2 10/10] docs: ansible_cfg: add documentation Daniel Gomez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250502-ansible_cfg_inventory-v2-5-d3c19ff4aa6e@samsung.com \
    --to=da.gomez@kernel.org \
    --cc=chuck.lever@oracle.com \
    --cc=da.gomez@samsung.com \
    --cc=kdevops@lists.linux.dev \
    --cc=mcgrof@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox