Skip to content

Commit 2de027d

Browse files
committed
Merge branch 'ci/fixes'
2 parents a6c2634 + 5efd851 commit 2de027d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/scripts/runtime_table_generator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,19 @@
4444
print("### Validation Tests")
4545

4646
# Read platform-specific target lists from environment variables
47+
# Map env var names to test suite platform names: hw->hardware, wokwi->wokwi, qemu->qemu
4748
platform_targets = {}
4849
try:
4950
hw_targets = json.loads(os.environ.get("HW_TARGETS", "[]"))
5051
wokwi_targets = json.loads(os.environ.get("WOKWI_TARGETS", "[]"))
5152
qemu_targets = json.loads(os.environ.get("QEMU_TARGETS", "[]"))
5253

53-
platform_targets["hw"] = sorted(hw_targets) if hw_targets else []
54+
platform_targets["hardware"] = sorted(hw_targets) if hw_targets else []
5455
platform_targets["wokwi"] = sorted(wokwi_targets) if wokwi_targets else []
5556
platform_targets["qemu"] = sorted(qemu_targets) if qemu_targets else []
5657
except (json.JSONDecodeError, KeyError) as e:
5758
print(f"Warning: Could not parse platform targets from environment: {e}", file=sys.stderr)
58-
platform_targets = {"hw": [], "wokwi": [], "qemu": []}
59+
platform_targets = {"hardware": [], "wokwi": [], "qemu": []}
5960

6061
proc_test_data = {}
6162

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
# As the Wokwi tests require access to secrets, they are run in a separate workflow.
55
# We need to ensure that the artifacts from previous tests in the chain are propagated for publishing the results.
66
# This is the current trigger sequence for the tests:
7-
# tests.yml -> tests_wokwi.yml -> tests_results.yml
7+
# tests.yml -> tests_hw_wokwi.yml -> tests_results.yml
88
# ⌙> tests_build.yml
9-
# ⌙> tests_hw.yml
109
# ⌙> tests_qemu.yml
1110

1211
name: Runtime Tests

0 commit comments

Comments
 (0)