-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathjustfile
35 lines (27 loc) · 1.21 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
just := env_var_or_default("JUST", "just")
just_dir := env_var_or_default("JUST_DIR", justfile_directory())
python := env_var_or_default("PYTHON", "python3")
cargo := env_var_or_default("CARGO", "cargo")
mdbook := env_var_or_default("MDBOOK", "mdbook")
publish_domain := env_var_or_default("PUBLISH_DOMAIN", "component-model.bytecodealliance.org")
scripts_dir := env_var_or_default("SCRIPTS_DIR", "scripts")
sitemap_output_path := env_var_or_default("SITEMAP_OUTPUT_PATH", absolute_path("./component-model/book/html/sitemap.xml"))
book_output_dir := env_var_or_default("BOOK_OUTPUT_DIR", "./component-model/book/html")
@_default:
{{just}} --list
# Print the directory the book is/would be output to
[group('meta')]
@print-book-dir:
echo -n {{book_output_dir}}
# Build the book
[group('build')]
@build-book:
{{mdbook}} build component-model
# Build the sitemap
[group('build')]
@build-sitemap:
{{python}} {{scripts_dir}}/generate_sitemap.py --domain "{{publish_domain}}" --higher-priority "design" --output-path {{sitemap_output_path}}
if [ ! -f "{{book_output_dir}}/index.html" ]; then \
echo "[error] index.html @ [{{book_output_dir}}] is missing. Build or path misconfigured"; \
exit 1; \
fi