We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c0f325 commit 098b210Copy full SHA for 098b210
.github/workflows/cmake.yml
@@ -52,7 +52,8 @@ jobs:
52
# Note the current convention is to use the -S and -B options here to specify source
53
# and build directories, but this is only available with CMake 3.13 and higher.
54
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
55
- run: PICO_SDK_PATH=../../pico-sdk cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPICO_BOARD=${{ matrix.board }}
+ # Set WIFI_SSID and WIFI_PASSWORD to build all of the wireless examples
56
+ run: PICO_SDK_PATH=../../pico-sdk cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPICO_BOARD=${{ matrix.board }} -DWIFI_SSID=TestSSID -DWIFI_PASSWORD=TestPassword
57
58
- name: Get core count
59
id: core_count
0 commit comments