Răsfoiți Sursa

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

Song Ruo Jing 3 ani în urmă
părinte
comite
06b517efcb

+ 2 - 2
components/ulp/.build-test-rules.yml

@@ -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

+ 2 - 2
examples/peripherals/.build-test-rules.yml

@@ -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:

+ 2 - 2
examples/peripherals/rmt/musical_buzzer/README.md

@@ -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
 

+ 1 - 1
examples/peripherals/rmt/musical_buzzer/pytest_musical_buzzer.py

@@ -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')