anchao commented on PR #15765: URL: https://github.com/apache/nuttx/pull/15765#issuecomment-2792443741
> Wonder if anyone has a faster Ubuntu PC that can run the script below and capture the CI Logs? Otherwise we'll be stuck waiting another 36 hours for my PC to complete the CI Checks :-( > > ```shell > 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 > ``` Maybe we can just run the configuration if `CONFIG_ELF` enabled: ``` $ grep -nIr CONFIG_ELF=y boards/ | awk -F'/' '{print $4"/"$6}' xx3823/nsh s698pm-dkit/nsh s698pm-dkit/smp xx3803/nsh spresense/rndis_smp spresense/module spresense/wifi spresense/wifi_smp spresense/rndis spresense/posix_spawn spresense/rndis_composite spresense/elf nucleo-h743zi/elf same70-xplained/pysim olimex-stm32-p407/kelf stm32f4discovery/composite stm32f4discovery/wifi stm32f4discovery/rndis stm32f4discovery/posix_spawn stm32f4discovery/adb stm32f4discovery/elf lm3s6965-ek/qemu-flat lm3s6965-ek/qemu-protected ... rv-virt/knsh64 arty_a7/knsh-tickless arty_a7/knsh esp32c3-devkit/elf esp32-devkitc/elf esp32s3-devkit/elf avaota-a1/nsh qemu-armv8a/knsh ``` e.g esp32-devkitc:elf that just failed is in this list -- 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