File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ jobs:
5555 if : ${{ !cancelled() }}
5656 run : make ARCH_TARGET=${{ matrix.arch }}
5757 - name : Build TLS Debug Target
58- run : make WEBUI_USE_TLS=1 debug
58+ run : make ARCH_TARGET=${{ matrix.arch }} WEBUI_USE_TLS=1 debug
5959 - name : Build TLS Release Target
60- run : make WEBUI_USE_TLS=1
60+ run : make ARCH_TARGET=${{ matrix.arch }} WEBUI_USE_TLS=1
6161 - name : Build examples
6262 run : |
6363 examples_base_dir=$(pwd)/examples/C
6464 for example in $(find $examples_base_dir/* -maxdepth 0 -type d); do
6565 echo "> $example"
6666 cd $example || (exit_code=1 && continue)
67- if ! make; then
67+ if ! make ARCH_TARGET=${{ matrix.arch }} ; then
6868 echo "Failed to build '$example'"
6969 exit_code=1
7070 continue
You can’t perform that action at this time.
0 commit comments