From 736b692d8fbc5c5c35a9b3e195d02930f048de5f Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Tue, 25 Jun 2024 13:02:59 +0300 Subject: [PATCH] refactor: sort tests/examples by name in build.sh --- build.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build.sh b/build.sh index e3c68018..021e7f5e 100755 --- a/build.sh +++ b/build.sh @@ -44,18 +44,18 @@ for APP in $APPS; do fi done -build latest examples/peripherals/i2c/i2c_simple "$ALL_CHIPS" -build latest examples/peripherals/spi_slave/sender "$ALL_CHIPS" -build latest components/mbedtls/test_apps "$ALL_CHIPS" -build latest components/hal/test_apps/crypto "$ALL_CHIPS" build latest components/esp_driver_ledc/test_apps/ledc "$ALL_CHIPS" -build latest components/esp_psram/test_apps/psram "esp32 esp32s2 esp32s3 esp32p4" build latest components/esp_driver_pcnt/test_apps/pulse_cnt "esp32 esp32s2 esp32s3 esp32c6 esp32h2 esp32p4" -build latest components/esp_wifi/test_apps/wifi_function "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6" build latest components/esp_driver_spi/test_apps/master "$ALL_CHIPS" +build latest components/esp_psram/test_apps/psram "esp32 esp32s2 esp32s3 esp32p4" +build latest components/esp_wifi/test_apps/wifi_function "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6" +build latest components/hal/test_apps/crypto "$ALL_CHIPS" +build latest components/mbedtls/test_apps "$ALL_CHIPS" build latest components/nvs_flash/test_apps "$ALL_CHIPS" -build latest examples/peripherals/rmt/led_strip "$ALL_CHIPS" -build latest examples/peripherals/ledc/ledc_basic "$ALL_CHIPS" build latest examples/peripherals/adc/oneshot_read "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6 esp32h2" +build latest examples/peripherals/i2c/i2c_simple "$ALL_CHIPS" +build latest examples/peripherals/ledc/ledc_basic "$ALL_CHIPS" +build latest examples/peripherals/rmt/led_strip "$ALL_CHIPS" +build latest examples/peripherals/spi_slave/sender "$ALL_CHIPS" +build latest examples/peripherals/usb_serial_jtag/usb_serial_jtag_echo "esp32s3 esp32c3 esp32c6 esp32h2 esp32p4" build latest examples/peripherals/usb/device/tusb_console "esp32s2 esp32s3 esp32p4" -build latest examples/peripherals/usb_serial_jtag/usb_serial_jtag_echo "esp32s3 esp32c3 esp32c6 esp32h2 esp32p4" \ No newline at end of file