2022-07-12 22:34:02 -04:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-05-22 20:55:47 -04:00
|
|
|
.i2c_dependencies: &i2c_dependencies
|
|
|
|
depends_filepatterns:
|
|
|
|
# components
|
|
|
|
- examples/system/console/advanced/components/**/*
|
|
|
|
- components/driver/i2c/**/*
|
|
|
|
- components/driver/Kconfig
|
|
|
|
|
2022-07-15 00:52:44 -04:00
|
|
|
examples/peripherals/adc/continuous_read:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2022-12-05 03:01:34 -05:00
|
|
|
- if: SOC_ADC_DMA_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-10-27 06:55:07 -04:00
|
|
|
examples/peripherals/adc/oneshot_read:
|
|
|
|
disable:
|
2022-12-05 03:01:34 -05:00
|
|
|
- if: SOC_ADC_SUPPORTED != 1
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2023-03-06 23:09:07 -05:00
|
|
|
examples/peripherals/analog_comparator:
|
|
|
|
disable:
|
|
|
|
- if: SOC_ANA_CMPR_SUPPORTED != 1
|
2023-07-30 22:43:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet
|
2023-11-09 03:54:18 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_gpio
|
|
|
|
- esp_driver_ana_cmpr
|
2023-03-06 23:09:07 -05:00
|
|
|
|
2022-10-10 07:17:22 -04:00
|
|
|
examples/peripherals/dac:
|
2022-05-24 05:26:36 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_DAC_SUPPORTED != 1
|
|
|
|
|
2023-10-17 00:11:42 -04:00
|
|
|
examples/peripherals/gpio:
|
|
|
|
depends_components:
|
|
|
|
- esp_driver_gpio
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/gpio/matrix_keyboard:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32s2"
|
|
|
|
|
2023-12-12 03:46:27 -05:00
|
|
|
examples/peripherals/i2c/i2c_eeprom:
|
|
|
|
disable:
|
|
|
|
- if: SOC_I2C_SUPPORTED != 1
|
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2c
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/i2c/i2c_self_test:
|
|
|
|
disable:
|
2022-10-27 06:55:07 -04:00
|
|
|
- if: SOC_I2C_SUPPORT_SLAVE != 1
|
|
|
|
reason: the test requires both master and slave
|
2023-05-22 20:55:47 -04:00
|
|
|
<<: *i2c_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/i2c/i2c_simple:
|
|
|
|
disable:
|
2022-10-27 06:55:07 -04:00
|
|
|
- if: SOC_I2C_SUPPORT_SLAVE != 1
|
|
|
|
reason: the test requires both master and slave
|
2023-05-22 20:55:47 -04:00
|
|
|
<<: *i2c_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/i2c/i2c_tools:
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_I2C_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-05-22 20:55:47 -04:00
|
|
|
<<: *i2c_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-07-04 23:22:27 -04:00
|
|
|
examples/peripherals/i2s/i2s_basic/i2s_pdm:
|
|
|
|
disable:
|
2023-06-16 03:15:23 -04:00
|
|
|
- if: SOC_I2S_SUPPORTS_PDM != 1 or IDF_TARGET == "esp32p4"
|
2023-08-02 07:21:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2s
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-07-04 23:22:27 -04:00
|
|
|
examples/peripherals/i2s/i2s_basic/i2s_std:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2023-06-16 03:15:23 -04:00
|
|
|
- if: SOC_I2S_SUPPORTED != 1 or IDF_TARGET == "esp32p4"
|
2023-08-02 07:21:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2s
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-07-04 23:22:27 -04:00
|
|
|
examples/peripherals/i2s/i2s_basic/i2s_tdm:
|
|
|
|
disable:
|
2023-06-16 03:15:23 -04:00
|
|
|
- if: SOC_I2S_SUPPORTS_TDM != 1 or IDF_TARGET == "esp32p4"
|
2023-08-02 07:21:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2s
|
2022-07-04 23:22:27 -04:00
|
|
|
|
2022-08-23 03:10:13 -04:00
|
|
|
examples/peripherals/i2s/i2s_codec/i2s_es7210_tdm:
|
|
|
|
disable:
|
2023-01-10 01:43:07 -05:00
|
|
|
- if: SOC_I2S_SUPPORTS_TDM != 1 or (SOC_I2C_SUPPORTED != 1 or SOC_GPSPI_SUPPORTED != 1)
|
|
|
|
reason: rely on I2S TDM mode to receive audio, I2C to config es7210 and SPI to save audio to SD card
|
2023-08-02 07:21:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2s
|
|
|
|
- esp_driver_spi
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/i2c/**/*
|
2022-08-23 03:10:13 -04:00
|
|
|
|
2022-07-04 23:22:27 -04:00
|
|
|
examples/peripherals/i2s/i2s_codec/i2s_es8311:
|
|
|
|
disable:
|
2023-08-02 07:21:54 -04:00
|
|
|
- if: (SOC_I2S_SUPPORTED != 1 or SOC_I2C_SUPPORTED != 1)
|
2023-01-10 01:43:07 -05:00
|
|
|
reason: rely on I2S STD mode and I2C to config es7210
|
2023-08-02 07:21:54 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_i2s
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/i2c/**/*
|
2022-07-04 23:22:27 -04:00
|
|
|
|
|
|
|
examples/peripherals/i2s/i2s_recorder:
|
2023-06-16 03:15:23 -04:00
|
|
|
disable:
|
2023-08-02 07:21:54 -04:00
|
|
|
- if: SOC_SDMMC_HOST_SUPPORTED != 1 or IDF_TARGET == "esp32p4"
|
2022-10-24 04:29:20 -04:00
|
|
|
enable:
|
|
|
|
- if: SOC_I2S_SUPPORTS_PDM_RX > 0
|
2023-11-07 08:06:07 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_spi
|
|
|
|
- esp_driver_i2s
|
2022-07-04 23:22:27 -04:00
|
|
|
|
2022-10-27 06:55:07 -04:00
|
|
|
examples/peripherals/lcd/i2c_oled:
|
|
|
|
disable:
|
2023-02-09 06:01:40 -05:00
|
|
|
- if: SOC_I2C_SUPPORTED != 1
|
2023-10-13 02:57:32 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_lcd
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/i2c/**/*
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/lcd/i80_controller:
|
|
|
|
disable:
|
|
|
|
- if: SOC_LCD_I80_SUPPORTED != 1
|
2023-10-13 02:57:32 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_lcd
|
2023-11-07 08:06:07 -05:00
|
|
|
- esp_driver_i2s
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/lcd/rgb_panel:
|
|
|
|
disable:
|
|
|
|
- if: SOC_LCD_RGB_SUPPORTED != 1
|
2023-10-13 02:57:32 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_lcd
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-01-10 00:59:46 -05:00
|
|
|
examples/peripherals/lcd/spi_lcd_touch:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
2023-10-13 02:57:32 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_lcd
|
2023-10-19 02:38:32 -04:00
|
|
|
- esp_driver_spi
|
2023-01-10 00:59:46 -05:00
|
|
|
|
|
|
|
examples/peripherals/lcd/tjpgd:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
2023-10-13 02:57:32 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_lcd
|
2023-10-19 02:38:32 -04:00
|
|
|
- esp_driver_spi
|
2023-01-10 00:59:46 -05:00
|
|
|
|
2022-12-01 07:48:27 -05:00
|
|
|
examples/peripherals/ledc:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2022-12-01 07:48:27 -05:00
|
|
|
- if: SOC_LEDC_SUPPORTED != 1
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2023-02-22 22:24:48 -05:00
|
|
|
examples/peripherals/ledc/ledc_gamma_curve_fade:
|
|
|
|
disable:
|
|
|
|
- if: SOC_LEDC_SUPPORTED != 1 or SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED != 1
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/mcpwm:
|
|
|
|
disable:
|
|
|
|
- if: SOC_MCPWM_SUPPORTED != 1
|
2023-10-29 22:59:17 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_mcpwm
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-05-28 05:03:57 -04:00
|
|
|
examples/peripherals/mcpwm/mcpwm_bdc_speed_control:
|
|
|
|
disable:
|
|
|
|
- if: SOC_MCPWM_SUPPORTED != 1
|
2023-10-29 22:59:17 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_mcpwm
|
2022-05-28 05:03:57 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32s3"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/peripherals/mcpwm/mcpwm_bldc_hall_control:
|
|
|
|
disable:
|
|
|
|
- if: SOC_MCPWM_SUPPORTED != 1
|
2023-10-29 22:59:17 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_mcpwm
|
2022-05-28 05:03:57 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32s3"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
2023-08-16 22:45:23 -04:00
|
|
|
examples/peripherals/mcpwm/mcpwm_foc_svpwm_open_loop:
|
|
|
|
disable:
|
|
|
|
- if: SOC_MCPWM_SUPPORTED != 1
|
2023-10-29 22:59:17 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_mcpwm
|
2023-10-09 00:28:08 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32s3"
|
2023-08-16 22:45:23 -04:00
|
|
|
temporary: true
|
2023-10-09 00:28:08 -04:00
|
|
|
reason: lack of runners
|
2023-08-16 22:45:23 -04:00
|
|
|
|
2023-01-28 22:03:10 -05:00
|
|
|
examples/peripherals/parlio:
|
|
|
|
disable:
|
|
|
|
- if: SOC_PARLIO_SUPPORTED != 1
|
2023-08-07 07:31:10 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runner
|
2023-01-28 22:03:10 -05:00
|
|
|
|
|
|
|
examples/peripherals/parlio/simple_rgb_led_matrix:
|
|
|
|
disable:
|
|
|
|
- if: SOC_PARLIO_SUPPORTED != 1 or SOC_DEDICATED_GPIO_SUPPORTED != 1
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32c6"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/pcnt:
|
|
|
|
disable:
|
|
|
|
- if: SOC_PCNT_SUPPORTED != 1
|
2023-10-15 23:41:02 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_pcnt
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/rmt:
|
|
|
|
disable:
|
|
|
|
- if: SOC_RMT_SUPPORTED != 1
|
2023-11-21 21:22:29 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_rmt
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/rmt/ir_nec_transceiver:
|
|
|
|
disable:
|
|
|
|
- if: SOC_RMT_SUPPORTED != 1
|
|
|
|
disable_test:
|
2022-06-22 04:28:32 -04:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-21 21:22:29 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_rmt
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/rmt/musical_buzzer:
|
2022-08-30 04:10:52 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_RMT_SUPPORT_TX_LOOP_COUNT != 1
|
2023-11-21 21:22:29 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_rmt
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/rmt/stepper_motor:
|
2022-09-16 02:25:28 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP != 1
|
2023-11-21 21:22:29 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_rmt
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-08-01 07:46:52 -04:00
|
|
|
examples/peripherals/sdio/host:
|
2023-08-29 07:50:27 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: request p4 essl spi to be ready for build, TODO IDF-8357
|
2022-08-01 07:46:52 -04:00
|
|
|
enable:
|
|
|
|
- if: SOC_SDMMC_HOST_SUPPORTED == 1
|
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: Only the SDSPI of ESP32 supports ESP SDIO slave for now
|
2023-04-06 00:21:21 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-14 04:06:40 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_sdio
|
2022-08-01 07:46:52 -04:00
|
|
|
|
|
|
|
examples/peripherals/sdio/slave:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_SDIO_SLAVE_SUPPORTED != 1
|
2023-04-06 00:21:21 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-14 04:06:40 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_sdio
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-06-22 04:28:32 -04:00
|
|
|
examples/peripherals/sigma_delta:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2022-06-22 04:28:32 -04:00
|
|
|
- if: SOC_SDM_SUPPORTED != 1
|
2023-11-30 07:57:54 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_sdm
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-01-10 00:59:46 -05:00
|
|
|
examples/peripherals/spi_master/hd_eeprom:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
|
|
|
|
|
|
|
examples/peripherals/spi_master/lcd:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
|
|
|
|
2023-08-31 07:16:48 -04:00
|
|
|
examples/peripherals/spi_slave:
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
|
|
|
|
2022-10-27 06:55:07 -04:00
|
|
|
examples/peripherals/spi_slave_hd/append_mode/master:
|
|
|
|
disable:
|
2023-09-14 05:07:31 -04:00
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1 or SOC_SPI_SUPPORT_SLAVE_HD_VER2 != 1
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/spi_slave_hd/append_mode/slave:
|
2023-09-14 05:07:31 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1 or SOC_SPI_SUPPORT_SLAVE_HD_VER2 != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-01-10 00:59:46 -05:00
|
|
|
examples/peripherals/spi_slave_hd/segment_mode/seg_master:
|
|
|
|
disable:
|
2023-09-14 05:07:31 -04:00
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1 or SOC_SPI_SUPPORT_SLAVE_HD_VER2 != 1
|
2023-01-10 00:59:46 -05:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/spi_slave_hd/segment_mode/seg_slave:
|
|
|
|
disable:
|
2023-09-14 05:07:31 -04:00
|
|
|
- if: SOC_GPSPI_SUPPORTED != 1 or SOC_SPI_SUPPORT_SLAVE_HD_VER2 != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-03-02 21:40:47 -05:00
|
|
|
examples/peripherals/temperature_sensor/temp_sensor:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_TEMP_SENSOR_SUPPORTED != 1
|
2023-11-26 23:36:02 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_tsens
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-03-02 21:40:47 -05:00
|
|
|
examples/peripherals/temperature_sensor/temp_sensor_monitor:
|
|
|
|
disable:
|
|
|
|
- if: SOC_TEMPERATURE_SENSOR_INTR_SUPPORT != 1
|
2023-11-26 23:36:02 -05:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_tsens
|
2023-03-02 21:40:47 -05:00
|
|
|
|
2023-10-27 01:57:39 -04:00
|
|
|
examples/peripherals/timer_group/gptimer:
|
2023-01-05 06:34:05 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
2023-10-27 01:57:39 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_gptimer
|
2023-01-05 06:34:05 -05:00
|
|
|
|
2022-09-01 04:01:53 -04:00
|
|
|
examples/peripherals/timer_group/gptimer_capture_hc_sr04:
|
|
|
|
disable:
|
|
|
|
- if: SOC_TIMER_SUPPORT_ETM != 1
|
2023-10-27 01:57:39 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_driver_gptimer
|
|
|
|
|
|
|
|
examples/peripherals/timer_group/legacy_driver:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
|
|
|
depends_components:
|
|
|
|
- driver # legacy driver is still located in the "driver" component
|
2022-09-01 04:01:53 -04:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/peripherals/touch_sensor:
|
|
|
|
disable:
|
2022-07-21 01:42:25 -04:00
|
|
|
- if: SOC_TOUCH_SENSOR_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/touch_sensor/touch_element:
|
|
|
|
enable:
|
2022-07-28 05:47:44 -04:00
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
reason: only supports esp32s2 and esp32s3
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/touch_sensor/touch_sensor_v1:
|
|
|
|
disable:
|
2023-08-25 04:52:05 -04:00
|
|
|
- if: SOC_TOUCH_SENSOR_VERSION != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/touch_sensor/touch_sensor_v2:
|
|
|
|
disable:
|
2023-08-25 04:52:05 -04:00
|
|
|
- if: SOC_TOUCH_SENSOR_VERSION != 2
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-10-27 05:36:31 -04:00
|
|
|
examples/peripherals/twai/twai_alert_and_recovery:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_TWAI_SUPPORTED != 1
|
2022-10-27 05:36:31 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-10-27 05:36:31 -04:00
|
|
|
examples/peripherals/twai/twai_network:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2022-10-27 05:36:31 -04:00
|
|
|
- if: SOC_TWAI_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2022-10-27 05:36:31 -04:00
|
|
|
- if: IDF_TARGET not in ["esp32"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/peripherals/twai/twai_self_test:
|
|
|
|
disable:
|
2022-10-27 05:36:31 -04:00
|
|
|
- if: SOC_TWAI_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2022-10-27 05:36:31 -04:00
|
|
|
- if: IDF_TARGET not in ["esp32"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/peripherals/uart/uart_echo_rs485:
|
|
|
|
enable:
|
2023-04-17 06:47:30 -04:00
|
|
|
- if: INCLUDE_DEFAULT == 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/peripherals/usb:
|
|
|
|
disable:
|
2023-11-14 05:45:27 -05:00
|
|
|
- if: SOC_USB_OTG_SUPPORTED != 1
|
2023-11-28 05:50:50 -05:00
|
|
|
|
|
|
|
examples/peripherals/usb_serial_jtag/usb_serial_jtag_echo:
|
|
|
|
disable:
|
|
|
|
- if: SOC_USB_SERIAL_JTAG_SUPPORTED != 1
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32c6"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners. Hardware is similar, test on one target is enough currently.
|