lupyuen commented on PR #15765: URL: https://github.com/apache/nuttx/pull/15765#issuecomment-2777375179
Since the CI Jobs won't run correctly for this Breaking PR: I'm running the CI Jobs myself through Docker. The CI Logs will appear here: - https://gist.github.com/search?q=user%3Anuttxpr+run-ci-special&ref=searchresults I'm running a script that calls Docker for all CI Jobs: - https://github.com/lupyuen/nuttx-release/blob/main/run-ci-special.sh ```bash for job in \ arm-01 arm-02 arm-03 arm-04 \ arm-05 arm-06 arm-07 arm-08 \ arm-09 arm-10 arm-11 arm-12 \ arm-13 arm-14 \ arm64-01 \ other \ risc-v-01 risc-v-02 risc-v-03 risc-v-04 \ risc-v-05 risc-v-06 risc-v-07 \ sim-01 sim-02 sim-03 \ x86_64-01 \ xtensa-01 xtensa-02 xtensa-03 do sudo docker run -it \ ghcr.io/apache/nuttx/apache-nuttx-ci-linux:latest \ /bin/bash -c " set -x ; uname -a ; cd ; pwd ; git clone https://github.com/anchao/nuttx nuttx --branch 25020501 ; git clone https://github.com/anchao/nuttx-apps apps --branch 25020501 ; pushd nuttx ; git reset --hard HEAD ; echo NuttX Source: https://github.com/apache/nuttx/tree/\$(git rev-parse HEAD) ; popd ; pushd apps ; git reset --hard HEAD ; echo NuttX Apps: https://github.com/apache/nuttx-apps/tree/\$(git rev-parse HEAD) ; popd ; cd nuttx/tools/ci ; ( sleep 10800 ; echo Killing pytest after timeout... ; pkill -f pytest )& (./cibuild.sh -c -A -N -R testlist/$job.dat || echo '***** BUILD FAILED') ; " done ``` -- 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