ci: Modify build-test-rules.yml enable' to disable` to exclude preview targets

This commit is contained in:
Song Ruo Jing 2022-08-30 16:10:52 +08:00
parent 158b53e777
commit 06b517efcb
4 changed files with 7 additions and 7 deletions

View File

@ -5,5 +5,5 @@ components/ulp/test_apps/ulp_fsm:
- if: SOC_ULP_SUPPORTED == 1
components/ulp/test_apps/ulp_riscv:
enable:
- if: SOC_RISCV_COPROC_SUPPORTED == 1
disable:
- if: SOC_RISCV_COPROC_SUPPORTED != 1

View File

@ -107,8 +107,8 @@ examples/peripherals/rmt/ir_nec_transceiver:
reason: lack of runners
examples/peripherals/rmt/musical_buzzer:
enable:
- if: SOC_RMT_SUPPORT_TX_LOOP_COUNT == 1
disable:
- if: SOC_RMT_SUPPORT_TX_LOOP_COUNT != 1
examples/peripherals/rmt/onewire_ds18b20:
disable:

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32-C3 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
| ----------------- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | -------- | -------- | -------- |
# RMT Transmit Loop Count Example -- Musical Buzzer

View File

@ -8,7 +8,7 @@ from pytest_embedded import Dut
@pytest.mark.esp32s2
@pytest.mark.esp32s3
@pytest.mark.esp32c3
@pytest.mark.esp32h2
# @pytest.mark.esp32h2 TODO: uncomment this when remove --preview for h2
@pytest.mark.generic
def test_musical_buzzer_example(dut: Dut) -> None:
dut.expect_exact('example: Create RMT TX channel')