Print $PATH

This commit is contained in:
Nick Brassel
2025-08-07 08:23:31 +10:00
parent 24492d4058
commit d425385664
3 changed files with 6 additions and 0 deletions

View File

@@ -122,4 +122,5 @@ jobs:
cd /home/testuser/qmk_firmware
./util/ci/generate_failure_markdown.sh > $GITHUB_STEP_SUMMARY || true
[ ! -e .failed ] || echo "Some compilations failed, check the summary for details."

View File

@@ -32,6 +32,7 @@ TARGET ?= $(KEYBOARD_FILESAFE)_$(KEYMAP)
ifeq ($(strip $(DUMP_CI_METADATA)),yes)
$(info CI Metadata: KEYBOARD=$(KEYBOARD))
$(info CI Metadata: KEYMAP=$(KEYMAP))
$(info PATH=$(PATH))
endif
# Force expansion

View File

@@ -37,6 +37,10 @@ def mass_compile_targets(targets: List[BuildTarget], clean: bool, dry_run: bool,
builddir.mkdir(parents=True, exist_ok=True)
with open(makefile, "w") as f:
f.write(f"""\
$(info PATH=$(PATH))
"""# noqa
)
for target in sorted(targets, key=lambda t: (t.keyboard, t.keymap)):
keyboard_name = target.keyboard
keymap_name = target.keymap