nandi/frqpublic Fork 0
6aa2a6b9858fb3472c5d5976027e354cbd48653a
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.

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