just/justfile

193 lines
3.8 KiB
Makefile
Raw Normal View History

#!/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.
alias t := test
2017-11-17 07:30:08 +00:00
alias c := check
2017-11-17 07:30:08 +00:00
bt := '0'
export RUST_BACKTRACE := bt
test:
2017-11-17 07:30:08 +00:00
cargo test
2018-10-13 10:12:35 +00:00
fuzz:
cargo +nightly fuzz run fuzz-compiler
2017-11-17 07:30:08 +00:00
@spam:
{ \
figlet test; \
cargo build --color always 2>&1; \
cargo test --color always -- --color always 2>&1; \
} | less
# only run tests matching PATTERN
filter PATTERN:
2017-11-17 07:30:08 +00:00
cargo test {{PATTERN}}
2016-10-28 22:25:59 +00:00
build:
cargo build
2016-10-30 04:51:39 +00:00
check:
cargo check
fmt:
cargo +nightly fmt --all
watch +COMMAND='test':
cargo watch --clear --exec "{{COMMAND}}"
man:
cargo build --features help4help2man
help2man \
--name 'save and run commands' \
--manual 'JUST MANUAL' \
--no-info \
target/debug/just \
> man/just.1
view-man: man
man man/just.1
version := `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml | head -1`
# add git log messages to changelog
changes:
git log --pretty=format:%s >> CHANGELOG.md
2020-01-31 08:47:48 +00:00
# check run before publishing
publish-check: lint clippy test man
cargo outdated --exit-code 1
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
grep {{version}} CHANGELOG.md
cargo build --features summary
cargo +nightly generate-lockfile -Z minimal-versions
cargo test
2019-11-01 02:19:01 +00:00
git checkout Cargo.lock
2019-04-16 06:39:18 +00:00
2020-01-31 08:47:48 +00:00
# publish to crates.io and push release tag to github
2019-04-16 06:39:18 +00:00
publish: publish-check
cargo +nightly publish
2017-05-13 04:06:48 +00:00
git tag -a {{version}} -m 'Release {{version}}'
git push github {{version}}
2016-10-09 00:55:17 +00:00
# clean up feature branch BRANCH
done BRANCH:
git checkout master
git diff --no-ext-diff --quiet --exit-code
git pull --rebase github master
git diff --no-ext-diff --quiet --exit-code {{BRANCH}}
git branch -D {{BRANCH}}
# install just from crates.io
install:
cargo install -f just
# install development dependencies
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 10:12:35 +00:00
cargo +nightly install cargo-fuzz
# install system development dependencies with homebrew
install-dev-deps-homebrew:
brew install help2man
# everyone's favorite animate paper clip
2017-11-30 17:13:13 +00:00
clippy:
cargo clippy
# count non-empty lines of code
2016-10-27 16:50:06 +00:00
sloc:
@cat src/*.rs | sed '/^\s*$/d' | wc -l
2016-10-27 16:50:06 +00:00
@lint:
echo Checking for FIXME/TODO...
! grep --color -En 'FIXME|TODO' src/*.rs
echo Checking for long lines...
! grep --color -En '.{101}' src/*.rs
2017-11-17 07:30:08 +00:00
replace FROM TO:
sd '{{FROM}}' '{{TO}}' src/*.rs
2017-11-16 21:25:24 +00:00
test-quine:
cargo run -- quine
2016-10-04 06:55:55 +00:00
# make a quine, compile it, and verify it
quine:
2017-11-20 07:16:55 +00:00
mkdir -p tmp
@echo '{{quine-text}}' > tmp/gen0.c
2016-09-28 05:49:17 +00: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-20 07:16:55 +00:00
rm -r tmp
2016-09-28 05:49:17 +00:00
@echo 'It was a quine!'
quine-text := '
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;"
"}";
printf(s, 34, s, 34);
return 0;
}
'
render-readme:
#!/usr/bin/env ruby
require 'github/markup'
$rendered = GitHub::Markup.render("README.adoc", File.read("README.adoc"))
File.write('tmp/README.html', $rendered)
watch-readme:
just render-readme
fswatch -ro README.adoc | xargs -n1 -I{} just render-readme
# run all polyglot recipes
polyglot: _python _js _perl _sh _ruby
# (recipes that start with `_` are hidden from --list)
_python:
2016-10-08 00:56:39 +00:00
#!/usr/bin/env python3
print('Hello from python!')
_js:
2016-10-08 00:56:39 +00:00
#!/usr/bin/env node
console.log('Greetings from JavaScript!')
_perl:
2016-10-08 00:56:39 +00:00
#!/usr/bin/env perl
print "Larry Wall says Hi!\n";
_sh:
2016-10-08 00:56:39 +00:00
#!/usr/bin/env sh
hello='Yo'
echo "$hello from a shell script!"
_ruby:
2016-10-08 00:56:39 +00:00
#!/usr/bin/env ruby
puts "Hello from ruby!"
# Print working directory, for demonstration purposes!
pwd:
echo {{invocation_directory()}}
# Local Variables:
# mode: makefile
# End:
# vim: set ft=make :