2019-04-08 14:28:17 -07:00
|
|
|
#!/usr/bin/env just --justfile
|
|
|
|
# ^ A shebang isn't required, but allows a justfile to be executed
|
|
|
|
# like a script, with `./justfile test`, for example.
|
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
alias t := test
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
alias c := check
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
bt := '0'
|
2019-04-12 01:42:05 -07:00
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
export RUST_BACKTRACE := bt
|
2019-04-12 01:42:05 -07:00
|
|
|
|
2019-04-11 15:23:14 -07:00
|
|
|
test:
|
2017-11-16 23:30:08 -08:00
|
|
|
cargo test
|
|
|
|
|
2018-10-13 03:12:35 -07:00
|
|
|
fuzz:
|
|
|
|
cargo +nightly fuzz run fuzz-compiler
|
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
@spam:
|
|
|
|
{ \
|
|
|
|
figlet test; \
|
|
|
|
cargo build --color always 2>&1; \
|
|
|
|
cargo test --color always -- --color always 2>&1; \
|
|
|
|
} | less
|
2016-10-22 19:36:54 -07:00
|
|
|
|
2016-11-11 13:04:47 -08:00
|
|
|
# only run tests matching PATTERN
|
2019-04-11 15:23:14 -07:00
|
|
|
filter PATTERN:
|
2017-11-16 23:30:08 -08:00
|
|
|
cargo test {{PATTERN}}
|
2016-11-04 23:56:15 -07:00
|
|
|
|
2016-10-28 15:25:59 -07:00
|
|
|
build:
|
|
|
|
cargo build
|
|
|
|
|
2016-10-29 21:51:39 -07:00
|
|
|
check:
|
|
|
|
cargo check
|
|
|
|
|
2019-05-15 14:30:47 -07:00
|
|
|
watch +COMMAND='test':
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
cargo watch --clear --exec build --exec "{{COMMAND}}"
|
2016-11-12 10:28:47 -08:00
|
|
|
|
2019-07-18 21:58:06 -07:00
|
|
|
man:
|
|
|
|
cargo build --features help4help2man
|
|
|
|
help2man \
|
|
|
|
--name 'save and run commands' \
|
|
|
|
--manual 'JUST MANUAL' \
|
|
|
|
--no-info \
|
|
|
|
target/debug/just \
|
|
|
|
> man/just.1
|
|
|
|
man man/just.1
|
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
version := `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml | head -1`
|
2016-11-02 00:18:09 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# publish to crates.io
|
2019-04-15 23:39:18 -07:00
|
|
|
publish-check: lint clippy test
|
2016-11-02 00:18:09 -07:00
|
|
|
git branch | grep '* master'
|
2016-10-28 20:48:53 -07:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2018-11-06 01:00:34 -08:00
|
|
|
grep {{version}} CHANGELOG.md
|
2019-10-08 22:17:22 -07:00
|
|
|
cargo +nightly generate-lockfile -Z minimal-versions
|
|
|
|
cargo test
|
2019-10-31 19:19:01 -07:00
|
|
|
git checkout Cargo.lock
|
2019-04-15 23:39:18 -07:00
|
|
|
|
|
|
|
publish: publish-check
|
2019-10-31 20:10:18 -07:00
|
|
|
cargo +nightly publish
|
2017-05-12 21:06:48 -07:00
|
|
|
git tag -a {{version}} -m 'Release {{version}}'
|
|
|
|
git push github {{version}}
|
2016-10-08 17:55:17 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# clean up feature branch BRANCH
|
2016-11-11 18:52:27 -08:00
|
|
|
done BRANCH:
|
|
|
|
git checkout master
|
2019-05-15 13:07:41 -07:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2016-11-11 18:52:27 -08:00
|
|
|
git pull --rebase github master
|
2019-05-15 13:07:41 -07:00
|
|
|
git diff --no-ext-diff --quiet --exit-code {{BRANCH}}
|
|
|
|
git branch -D {{BRANCH}}
|
2016-11-11 18:52:27 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# install just from crates.io
|
2016-11-12 11:47:49 -08:00
|
|
|
install:
|
|
|
|
cargo install -f just
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# install development dependencies
|
2016-11-12 10:28:47 -08:00
|
|
|
install-dev-deps:
|
|
|
|
rustup install nightly
|
|
|
|
rustup update nightly
|
|
|
|
rustup run nightly cargo install -f clippy
|
|
|
|
cargo install -f cargo-watch
|
|
|
|
cargo install -f cargo-check
|
2018-10-13 03:12:35 -07:00
|
|
|
cargo +nightly install cargo-fuzz
|
2016-11-12 10:28:47 -08:00
|
|
|
|
2019-07-18 21:58:06 -07:00
|
|
|
# install system development dependencies with homebrew
|
|
|
|
install-dev-deps-homebrew:
|
|
|
|
brew install help2man
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# everyone's favorite animate paper clip
|
2017-11-30 09:13:13 -08:00
|
|
|
clippy:
|
2019-04-11 15:23:14 -07:00
|
|
|
cargo clippy
|
2016-10-23 20:39:50 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# count non-empty lines of code
|
2016-10-27 09:50:06 -07:00
|
|
|
sloc:
|
2016-11-12 23:31:19 -08:00
|
|
|
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
2016-10-27 09:50:06 -07:00
|
|
|
|
2016-11-13 00:08:14 -08:00
|
|
|
@lint:
|
2016-11-12 23:31:19 -08:00
|
|
|
echo Checking for FIXME/TODO...
|
2016-11-12 07:56:13 -08:00
|
|
|
! grep --color -En 'FIXME|TODO' src/*.rs
|
2016-11-12 23:31:19 -08:00
|
|
|
echo Checking for long lines...
|
2017-05-12 19:09:47 -07:00
|
|
|
! grep --color -En '.{101}' src/*.rs
|
2016-11-07 21:01:27 -08:00
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
replace FROM TO:
|
2019-11-07 10:55:15 -08:00
|
|
|
sd '{{FROM}}' '{{TO}}' src/*.rs
|
2017-11-16 13:25:24 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
test-quine:
|
2016-11-23 20:20:32 -08:00
|
|
|
cargo run -- quine
|
2016-11-12 23:31:19 -08:00
|
|
|
|
2016-10-03 23:55:55 -07:00
|
|
|
# make a quine, compile it, and verify it
|
2016-11-23 20:20:32 -08:00
|
|
|
quine:
|
2017-11-19 23:16:55 -08:00
|
|
|
mkdir -p tmp
|
2016-11-23 20:20:32 -08:00
|
|
|
@echo '{{quine-text}}' > tmp/gen0.c
|
2016-09-27 22:49:17 -07:00
|
|
|
cc tmp/gen0.c -o tmp/gen0
|
|
|
|
./tmp/gen0 > tmp/gen1.c
|
|
|
|
cc tmp/gen1.c -o tmp/gen1
|
|
|
|
./tmp/gen1 > tmp/gen2.c
|
|
|
|
diff tmp/gen1.c tmp/gen2.c
|
2017-11-19 23:16:55 -08:00
|
|
|
rm -r tmp
|
2016-09-27 22:49:17 -07:00
|
|
|
@echo 'It was a quine!'
|
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
quine-text := '
|
2016-11-13 14:33:41 -08:00
|
|
|
int printf(const char*, ...);
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
char *s =
|
|
|
|
"int printf(const char*, ...);"
|
|
|
|
"int main() {"
|
|
|
|
" char *s = %c%s%c;"
|
|
|
|
" printf(s, 34, s, 34);"
|
|
|
|
" return 0;"
|
2017-05-13 15:34:26 -07:00
|
|
|
"}";
|
2016-11-13 14:33:41 -08:00
|
|
|
printf(s, 34, s, 34);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
'
|
2016-10-28 00:10:19 -07:00
|
|
|
|
2017-10-12 16:12:23 -07:00
|
|
|
render-readme:
|
|
|
|
#!/usr/bin/env ruby
|
|
|
|
require 'github/markup'
|
2018-02-03 20:27:07 -08:00
|
|
|
$rendered = GitHub::Markup.render("README.adoc", File.read("README.adoc"))
|
2017-10-12 16:12:23 -07:00
|
|
|
File.write('tmp/README.html', $rendered)
|
|
|
|
|
|
|
|
watch-readme:
|
|
|
|
just render-readme
|
2018-02-03 20:27:07 -08:00
|
|
|
fswatch -ro README.adoc | xargs -n1 -I{} just render-readme
|
2017-10-12 16:12:23 -07:00
|
|
|
|
2016-10-23 21:25:23 -07:00
|
|
|
# run all polyglot recipes
|
2019-04-12 01:42:05 -07:00
|
|
|
polyglot: _python _js _perl _sh _ruby
|
|
|
|
# (recipes that start with `_` are hidden from --list)
|
2016-10-09 00:30:33 -07:00
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_python:
|
2016-10-07 17:56:39 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
print('Hello from python!')
|
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_js:
|
2016-10-07 17:56:39 -07:00
|
|
|
#!/usr/bin/env node
|
|
|
|
console.log('Greetings from JavaScript!')
|
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_perl:
|
2016-10-07 17:56:39 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
print "Larry Wall says Hi!\n";
|
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_sh:
|
2016-10-07 17:56:39 -07:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
hello='Yo'
|
|
|
|
echo "$hello from a shell script!"
|
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_ruby:
|
2016-10-07 17:56:39 -07:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
puts "Hello from ruby!"
|
2017-03-12 19:17:52 -07:00
|
|
|
|
2018-06-19 10:04:03 -07:00
|
|
|
# Print working directory, for demonstration purposes!
|
|
|
|
pwd:
|
|
|
|
echo {{invocation_directory()}}
|
|
|
|
|
2017-03-12 19:17:52 -07:00
|
|
|
# Local Variables:
|
|
|
|
# mode: makefile
|
|
|
|
# End:
|
|
|
|
# vim: set ft=make :
|