File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -90,13 +90,12 @@ jobs:
9090 - name : Build loader
9191 shell : bash
9292 run : |
93- if ! ./extra/build.sh ${{ matrix.board }} 2>(tee error.log) ; then
93+ if ! ./extra/build.sh ${{ matrix.board }} ; then
9494 echo "\`\`\`" > $GITHUB_STEP_SUMMARY
95- cat error.log >> $GITHUB_STEP_SUMMARY
95+ cat build/${{ matrix.variant }}/ error.log >> $GITHUB_STEP_SUMMARY
9696 echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
9797 exit 1
9898 fi
99- cat error.log
10099
101100 - name : Package board binaries
102101 if : ${{ !cancelled() }}
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}
71+ west build -d ${BUILD_DIR} -b ${target} loader -t llext-edk ${args} 2> (tee ${BUILD_DIR} /error.log >&2 )
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