Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
- name: Install dependencies
run: ./scripts/deps.sh

- name: Show config
run: make BOARD=${{ matrix.boards }} show-config

- name: Build firmware
run: make BOARD=${{ matrix.boards }} VERBOSE=1

Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ SRC += $(foreach src, $(arch-y), $(ARCH_DIR)/$(src))

include $(ARCH_DIR)/toolchain.mk

# TODO: Generate config file as part of build.
.PHONY: show-config
show-config:
$(foreach v, \
$(sort $(filter CONFIG_%,$(.VARIABLES))), \
$(info $(v)=$($(v))))

# The architecture defines build targets, no more is required
endif

Expand Down
Loading