We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f0b54 commit 473daadCopy full SHA for 473daad
.github/workflows/get_rust_apps.py
@@ -13,9 +13,6 @@
13
# app-pocket: does not build (Obsidians' Alamgu issue)
14
excluded_apps = ["app-kadena-legacy", "app-pocket"]
15
16
-# Excluded devices
17
-excluded_devices = ["nanos"]
18
-
19
# Retrieve all public apps on LedgerHQ GitHub organization
20
token = sys.argv[1]
21
gh = GitHubLedgerHQ(token)
@@ -36,8 +33,7 @@
36
33
if manifest.app.sdk == "rust":
37
34
if app.name not in excluded_apps:
38
35
for d in manifest.app.devices:
39
- if d not in excluded_devices:
40
- rust_apps.append({"app-name": app.name, "device": d})
+ rust_apps.append({"app-name": app.name, "device": d})
41
42
# save the list of (apps, device) pairs to build in a json format:
43
with open("rust_apps.json", "w") as f:
0 commit comments