nandi/frqpublic Fork 0
472e179b3bf7b6b6b58384036615ee6693c0f9d7
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.

Take the Android objects from jolt-native's CI, always the latest 472e179 · on 472e179b3bf7b6b6b58384036615ee6693c0f9d7 · nandi · 11d ago
justfile · 31 lines · 1.1 KBMakefile Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Every recipe here is one line, because the work is in scripts/ — babashka
# scripts, run through scripts/bb, which finds a bb the way this tree finds
# everything else. A recipe body is a shell script nobody can run on its own;
# a script in scripts/ is a script.

set shell := ["bash", "-euo", "pipefail", "-c"]

default:
    @just --list

# The APK, out of the flake. `just apk install` puts it on the device.
apk action="build":
    scripts/apk.bb {{action}}

# The jolt-native source pin — deps.edn and the flake input — at a release. The
# Android objects are not pinned here any more; `just apk` takes the latest CI
# build of those on every run.
bump tag="":
    scripts/bump-jolt-native.bb {{tag}}

# The app: this tree's source on the flake's everything-else, in the dev shell.
run *args:
    scripts/run.bb {{args}}

# The same screens in a terminal. `just tui --headless` prints one screenshot.
tui *args:
    scripts/tui.bb {{args}}

# A jolt with the native libraries under it: a REPL, or `just repl nrepl-server`.
repl *args:
    scripts/repl.bb {{args}}