forked from serpent-os/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
60 lines (46 loc) · 2.19 KB
/
justfile
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
default: (_build build_file)
set dotenv-load
# respect variables set in .env file next to the present justfile
boulder := env_var_or_default('BOULDER', 'boulder')
boulder_args := env_var_or_default('BOULDER_ARGS', '')
boulder_profile := env_var_or_default('BOULDER_PROFILE', 'local-x86_64')
build_file := join(invocation_directory(), "stone.yaml")
local_repo := env_var_or_default('LOCAL_REPO', '${HOME}/.cache/local_repo/x86_64')
# Build the stone.yaml recipe using boulder
_build target:
cd {{ invocation_directory() }}; {{boulder}} build {{boulder_args}} -u {{ if path_exists(target) == "true" { target } else { error("Missing stone.yaml file") } }} -p {{ boulder_profile }}
# Build stone.yaml from the current directory
build: (_build build_file)
# Chroot into target from stone.yaml recipe with boulder
_chroot target:
cd {{ invocation_directory() }}; {{boulder}} {{boulder_args}} chroot {{ if path_exists(target) == "true" { target } else { error("Missing stone.yaml file") } }}
_bump target:
cd {{ invocation_directory() }}; {{boulder}} {{boulder_args}} recipe bump
bump: (_bump build_file)
# Chroot into pkg from the current directory
chroot: (_chroot build_file)
# Clean up .stone files
_clean target:
cd {{ invocation_directory() }}; rm -v *.stone || echo "No .stone file(s) found"
# Clean *.stone artefacts from the current directory
clean: (_clean build_file)
# Init git hooks
_init target:
ln -sfv ../../tools/prepare-commit-msg.py $(git rev-parse --git-path hooks)/prepare-commit-msg
init: (_init build_file)
# create LOCAL_REPO dir if it doesn't exist
create-local:
#!/usr/bin/env bash
set -euxo pipefail
if [[ ! -d {{local_repo}} ]]; then
mkdir -pv {{local_repo}}
fi
# index .stones in LOCAL_REPO (create it if it doesn't exist)
index-local: create-local
cd {{ invocation_directory() }} && moss index {{local_repo}}
# list .stones in LOCAL_REPO (create it if it doesn't exist)
ls-local: create-local
cd {{ invocation_directory() }} && ls -AFcghlot {{local_repo}}
# move .stones to LOCAL_REPO (create if it doesn't exist) and reindex it
mv-local: create-local
cd {{ invocation_directory() }} && mv -v *.stone {{local_repo}}/ && moss index {{local_repo}}