File tree 1 file changed +2
-7
lines changed
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,10 @@ jobs:
25
25
- name : Configure CMake
26
26
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
27
27
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
28
- run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
28
+ run : cmake -B ${{github.workspace}}/build -DPICO_BOARD=pico_w -DPICO_SDK_PATH=../pico-sdk ../
29
29
30
30
- name : Build
31
31
# Build your program with the given configuration
32
- run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
32
+ run : cmake --build ${{github.workspace}}/build
33
33
34
- - name : Test
35
- working-directory : ${{github.workspace}}/build
36
- # Execute tests defined by the CMake configuration.
37
- # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
38
- run : ctest -C ${{env.BUILD_TYPE}}
39
34
You can’t perform that action at this time.
0 commit comments