Skip to content

Commit 473daad

Browse files
committed
Remove excluded devices list
1 parent f5f0b54 commit 473daad

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/get_rust_apps.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
# app-pocket: does not build (Obsidians' Alamgu issue)
1414
excluded_apps = ["app-kadena-legacy", "app-pocket"]
1515

16-
# Excluded devices
17-
excluded_devices = ["nanos"]
18-
1916
# Retrieve all public apps on LedgerHQ GitHub organization
2017
token = sys.argv[1]
2118
gh = GitHubLedgerHQ(token)
@@ -36,8 +33,7 @@
3633
if manifest.app.sdk == "rust":
3734
if app.name not in excluded_apps:
3835
for d in manifest.app.devices:
39-
if d not in excluded_devices:
40-
rust_apps.append({"app-name": app.name, "device": d})
36+
rust_apps.append({"app-name": app.name, "device": d})
4137

4238
# save the list of (apps, device) pairs to build in a json format:
4339
with open("rust_apps.json", "w") as f:

0 commit comments

Comments
 (0)