-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
103 lines (98 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# just reference: https://just.systems/man/en/
# cheatsheet: https://cheatography.com/linux-china/cheat-sheets/justfile/
# monolith flavor: ~/.config/nvim/readme/build.md
# Allows positional arguments
set positional-arguments
build:
@dub build
release:
@dub build -b release
dust status:
dub dustmite ../dustmite/pxv/ --compiler-status={{status}} -b=release --no-redirect
# This is a default recipe
# Tf "default" recipe is not there then
# first recipe will be considered default
#
# Prints all available recipes
# default:
# @just --list
#
# Here's a quick cheatsheet/overview of just and monoltih flavor
# Monolith \bb, \br, \bt behavor (\bB will show all)
# build - will be default build task "\bb"
# run - will be default run task "\br"
# test - will be default test task "\bt"
#
# Just:
# Set a variable (variable case is arbitrary)
# SINGLE := "--single"
#
# Join paths:
# myPaths := "path/to" / "file" + ".txt"
#
# Or conditions
# foo := if "2" == "2" { "Good!" } else { "1984" }
#
# Run set configurations
# all: build_d build_d_custom _echo
#
# Alias to a recipe (just noecho)
# alias noecho := _echo
#
# Example configuration (dub build not going to be printed):
# build_d:
# @dub build
#
# Or use this to silence all command prints (output will still print):
# @build_d_custom:
# dub build
# dub run
#
# Continue even on fail by adding "-" ([linux] makes recipe be seen only in linux)
# [linux]
# test:
# -cat notexists.txt
# echo "Still executes"
#
# Configuration using variable from above
# buildFile FILENAME:
# dub build {{SINGLE}} $1
#
# Set env
# @test_d:
# #!/bin/bash
# ./test.sh
#
# Private task
# _echo:
# echo "From echo"
#
# A command's arguments can be passed to dependency
# build target:
# @echo "Building {{target}}…"
#
# push target: (build target)
# @echo 'Pushing {{target}}…'
#
# Use `` to eval command, () to join paths
# in them and arg=default to set default value
# test target test=`echo "default"`:
# @echo 'Testing {{target}} {{test}}'
#
# Use + (1 ore more) or * (0 or more) to make argument variadic. Must be last
# ntest +FILES="justfile1 justfile2":
# echo "{{FILES}}"
#
# Dependencies always run before recipe, unless they're after &&
# This example will run "a" before "b" and "c" and "d" after "b"
# b: a && c d:
# echo "b"
#
# Each recipe line is executed by a new shell,
# so if you change the working directory on one line,
# it won't have an effect on later lines.
# A safe way to work around this is to use shebang ("#!/bin/bash")
# foo:
# pwd # This `pwd` will print the same directory…
# cd bar
# pwd # …as this `pwd`!