Skip to content

Commit

Permalink
Drop concept of QEMU as a Tizen board and simply use ARM as a generic
Browse files Browse the repository at this point in the history
name for all ARM-based boards.
  • Loading branch information
arkq committed Feb 28, 2023
1 parent cf45e19 commit 473e854
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qemu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ jobs:
run: |
./scripts/run_in_build_env.sh \
"./scripts/build/build_examples.py \
--target tizen-qemu-tests-no-ble \
--target tizen-arm-tests-no-ble \
build
"
4 changes: 1 addition & 3 deletions scripts/build/build/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,6 @@ def BuildTizenTarget():
# board
target.AppendFixedTargets([
TargetPart('arm', board=TizenBoard.ARM),
TargetPart('qemu', board=TizenBoard.QEMU),
])

# apps
Expand All @@ -473,8 +472,7 @@ def BuildTizenTarget():
TargetPart('all-clusters-minimal', app=TizenApp.ALL_CLUSTERS_MINIMAL),
TargetPart('chip-tool', app=TizenApp.CHIP_TOOL),
TargetPart('light', app=TizenApp.LIGHT),
# test driver app
TargetPart('tests', app=TizenApp.TESTS).OnlyIfRe("-qemu"),
TargetPart('tests', app=TizenApp.TESTS),
])

target.AppendModifier(name="no-ble", enable_ble=False)
Expand Down
1 change: 0 additions & 1 deletion scripts/build/builders/tizen.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
class TizenBoard(Enum):

ARM = Board('arm')
QEMU = Board('arm')


class TizenApp(Enum):
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/testdata/all_targets_linux_x64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ mw320-all-clusters-app
nrf-{nrf5340dk,nrf52840dk,nrf52840dongle}-{all-clusters,all-clusters-minimal,lock,light,light-switch,shell,pump,pump-controller,window-covering}[-rpc]
nrf-native-posix-64-tests
qpg-qpg6105-{lock,light,shell,persistent-storage}
tizen-{arm,qemu}-{all-clusters,all-clusters-minimal,chip-tool,light,tests}[-no-ble][-no-wifi][-asan][-ubsan]
tizen-arm-{all-clusters,all-clusters-minimal,chip-tool,light,tests}[-no-ble][-no-wifi][-asan][-ubsan]
telink-tlsr9518adk80d-{all-clusters,all-clusters-minimal,contact-sensor,light,light-switch,lock,ota-requestor,pump,pump-controller,thermostat}[-rpc]
openiotsdk-{shell,lock}

0 comments on commit 473e854

Please sign in to comment.