lupyuen commented on PR #16198: URL: https://github.com/apache/nuttx/pull/16198#issuecomment-2801677631
Hi @Donny9: Because the Normal CI Checks won't work for this Breaking PR, I'm now running the Special CI Checks (see below) on our NuttX Build Farm. The CI Checks will complete in 36 hours, the CI Logs will appear here: https://gist.github.com/nuttxpr https://github.com/lupyuen/nuttx-release/blob/main/run-ci-special.sh ```bash ## Repeat forever for All CI Jobs for (( ; ; )); do 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 ## Run the CI in Docker Container ## If CI Test Hangs: Kill it after 3 hours 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/Donny9/incubator-nuttx nuttx --branch sem ; git clone https://github.com/Donny9/incubator-nuttx-apps apps --branch system_dd ; 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 ; sleep 10 ; 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