Skip to content

Commit 9e4e13b

Browse files
committed
Revert "added build in CI"
This reverts commit 5a1fcda.
1 parent 3dff510 commit 9e4e13b

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

.github/workflows/examples-efr32.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
./scripts/run_in_build_env.sh \
6868
"./scripts/build/build_examples.py \
6969
--enable-flashbundle \
70-
--target efr32-brd4187c-air-quality-sensor \
7170
--target efr32-brd4187c-thermostat-openthread-mtd \
7271
--target efr32-brd4187c-switch-shell-use-ot-coap-lib \
7372
--target efr32-brd4187c-unit-test \

scripts/build/build/targets.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,7 @@ def BuildEfr32Target():
266266
TargetPart('light', app=Efr32App.LIGHT),
267267
TargetPart('lock', app=Efr32App.LOCK),
268268
TargetPart('thermostat', app=Efr32App.THERMOSTAT),
269-
TargetPart('pump', app=Efr32App.PUMP),
270-
TargetPart('air-quality-sensor', app=Efr32App.AIR_QUALITY_SENSOR)
269+
TargetPart('pump', app=Efr32App.PUMP)
271270
])
272271

273272
target.AppendModifier('rpc', enable_rpcs=True)

scripts/build/builders/efr32.py

-6
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ def ExampleName(self):
4646
return 'thermostat'
4747
elif self == Efr32App.PUMP:
4848
return 'pump-app'
49-
elif self == Efr32App.AIR_QUALITY_SENSOR:
50-
return 'air-quality-sensor-app'
5149
else:
5250
raise Exception('Unknown app type: %r' % self)
5351

@@ -66,8 +64,6 @@ def AppNamePrefix(self):
6664
return 'matter-silabs-pump-example'
6765
elif self == Efr32App.UNIT_TEST:
6866
return 'matter-silabs-device_tests'
69-
elif self == Efr32App.AIR_QUALITY_SENSOR:
70-
return 'matter-silabs-air-quality-sensor-example'
7167
else:
7268
raise Exception('Unknown app type: %r' % self)
7369

@@ -86,8 +82,6 @@ def FlashBundleName(self):
8682
return 'pump_app.flashbundle.txt'
8783
elif self == Efr32App.UNIT_TEST:
8884
return os.path.join('tests', 'efr32_device_tests.flashbundle.txt')
89-
elif self == Efr32App.AIR_QUALITY_SENSOR:
90-
return 'air_quality_sensor_app.flashbundle.txt'
9185
else:
9286
raise Exception('Unknown app type: %r' % self)
9387

0 commit comments

Comments
 (0)