Index: build/build.sh =================================================================== diff -u -rc44a3ed270e810c82c64a660a7d612ad8bff3d9c -r39cfef338ace564bbda2d3ffa3f4bd9602d460d6 --- build/build.sh (.../build.sh) (revision c44a3ed270e810c82c64a660a7d612ad8bff3d9c) +++ build/build.sh (.../build.sh) (revision 39cfef338ace564bbda2d3ffa3f4bd9602d460d6) @@ -297,26 +297,32 @@ #return back to main folder cd .. + + # Copy the build logs the remote address regardless of the build results + LOG=Logs + mkdir -p $REMOTE_DIR/$REPORT_DIR/$LOG + cp $out_path/* $REMOTE_DIR/$REPORT_DIR/$LOG + + mkdir -p $REMOTE_DIR/$REPORT_DIR/$LOG + cp $out_path/* $REMOTE_DIR/$REPORT_DIR/$LOG # Check if the builds passed. If they did, copy the build folder. if [[ $hasTestPassed == true ]] then echo " ------------------------------ copy the out file into the server" - LOG=Logs + echo " ------------------------------ $poky_out" - mkdir -p $REMOTE_DIR/$REPORT_DIR/$LOG - cp $out_path/* $REMOTE_DIR/$REPORT_DIR/$LOG mkdir -p $REMOTE_DIR/$REPORT_DIR/bin/$poky_out cp $out_path/$poky_out/denali $REMOTE_DIR/$REPORT_DIR/bin/$poky_out sync;sync;sync; echo " ------------------------------ $gcc_out" - mkdir -p $REMOTE_DIR/$REPORT_DIR/$LOG - cp $out_path/* $REMOTE_DIR/$REPORT_DIR/$LOG mkdir -p $REMOTE_DIR/$REPORT_DIR/bin/$gcc_out cp $out_path/$gcc_out/denali $REMOTE_DIR/$REPORT_DIR/bin/$gcc_out sync;sync;sync; fi + + fi # To report what cases have been tested manually