Skip to content

Commit bf48e0f

Browse files
committed
Update build.yml
1 parent 56cb158 commit bf48e0f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
4141
versions = sorted(set(versions), key=ver_key)
4242
43-
devices = json.loads(subprocess.check_output(["xcrun", "simctl", "list", "devices", "-j"], text=True)).get("devices", {})
43+
devices = json.loads(subprocess.check_output(["xcrun", "simctl", "list", "devices", "-j"], text=True)).get("devices", {})
44+
print("Runtime keys:")
45+
for k in sorted(devices.keys()):
46+
print(f"- {k}")
4447
4548
def is_available(d):
4649
return d.get("isAvailable") or d.get("availability") == "(available)"

0 commit comments

Comments
 (0)