File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9090 - name : Build loader
9191 shell : bash
9292 run : |
93- if ! ./extra/build.sh ${{ matrix.board }} ; then
93+ if ! ./extra/build.sh ${{ matrix.board }} 2> >(tee error.log) ; then
9494 echo "\`\`\`" > $GITHUB_STEP_SUMMARY
95- cat build/${{ matrix.variant }}/ error.log >> $GITHUB_STEP_SUMMARY
95+ cat error.log >> $GITHUB_STEP_SUMMARY
9696 echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
9797 exit 1
9898 fi
Original file line number Diff line number Diff line change 6868BUILD_DIR=build/${variant}
6969VARIANT_DIR=variants/${variant}
7070rm -rf ${BUILD_DIR}
71- west build -d ${BUILD_DIR} -b ${target} loader -t llext-edk ${args} 2> (tee ${BUILD_DIR} /error.log >&2 )
71+ west build -d ${BUILD_DIR} -b ${target} loader -t llext-edk ${args}
7272
7373# Extract the generated EDK tarball and copy it to the variant directory
7474mkdir -p ${VARIANT_DIR} firmwares
You can’t perform that action at this time.
0 commit comments