lupyuen commented on issue #14680: URL: https://github.com/apache/nuttx/issues/14680#issuecomment-2480611054
Yep this kills the CI Test after 2 hours! (Assuming our jobs are not supposed to exceed 2 hours) We changed [build.yml](https://github.com/NuttX/nuttx/commit/0fc9e07fbf4da289f7aa544254787611fccb0954#diff-5c3fa597431eda03ac3339ae6bf7f05e1a50d6fc7333679ec38e21b337cb6721R184-R192): ```bash cd sources/nuttx/tools/ci if [ "X${{matrix.boards}}" = "Xcodechecker" ]; then ./cibuild.sh -c -A -N -R --codechecker testlist/${{matrix.boards}}.dat else ## Inserted this ( sleep 7200 ; echo Killing pytest... ; pkill -f pytest )& ./cibuild.sh -c -A -N -R -S testlist/${{matrix.boards}}.dat fi ``` [(See the Build Log)](https://github.com/NuttX/nuttx/actions/runs/11871069649/job/33083208869) - Which is patched into NuttX Mirror Repo by this script: [enable-macos-windows.sh](https://github.com/lupyuen/nuttx-release/blob/main/enable-macos-windows.sh#L60-L70) - Also for Ubuntu Build Farm: [run-job.sh](https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh#L33-L38) - And for macOS Build Farm: [run-job-macos.sh](https://github.com/lupyuen/nuttx-build-farm/blob/main/run-job-macos.sh#L131-L144) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org