mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Print $PATH
This commit is contained in:
1
.github/workflows/bootstrap_testing.yml
vendored
1
.github/workflows/bootstrap_testing.yml
vendored
@@ -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."
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user