nandi/frqpublic Fork 0
6e5b1aab9e9cc46737c03b4b764a27dfcf1d848c
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Build the APK with buck2, from pins rather than from a second checkout a71ef8f · on 6e5b1aab9e9cc46737c03b4b764a27dfcf1d848c · nandi · 19d ago
BUCK · 15 lines · 484 BPython Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# The Jolt sources the boot image is compiled from. Named as a target so that
# editing a screen invalidates the image: the compile itself reads the tree
# through deps.edn paths rather than through these, but buck only reruns it
# when something here changes.
filegroup(
    name = "jolt-sources",
    srcs = glob(["src/**/*.jolt", "src/**/*.edn"]) + ["deps.edn"],
    visibility = ["PUBLIC"],
)

alias(
    name = "apk",
    actual = "//android:apk",
    visibility = ["PUBLIC"],
)