boards/esp32: cleanup CI compilation for esp_wifi_enterprise #18218
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contribution description
This PR is a cleanup of the CI compilation of optional ESP module
esp_wifi_enterprise
.In the board definition of
esp32_wrover_kit
, default values forESP_WIFI_EAP_USER
andESP_WIFI_EAP_PASS
had to be defined because this board was used in the CI to compile the optional moduleesp_wifi_enterprise
(PR #17314).Now where the CI compilation for the
esp_wifi_enterprise
module is realized by an external board definitionesp32-ci
, these default values should be removed fromesp32_wrover_kit
to let the compilation fail if the user did not define these required variables. Instead, the variables are defined for the CI compilation inMakefile.include
of external board definitionesp32-ci
.Testing procedure
USEMODULE=esp_wifi_enterprise BOARD=esp32-wrover-kit make -j8 -C examples/gnrc_minimal
should fail.Issues/PRs references
Cleanup of PR #17314