1
0
mirror of https://github.com/casey/just synced 2024-07-05 17:28:49 +00:00
just/justfile

224 lines
4.5 KiB
Makefile
Raw Normal View History

#!/usr/bin/env -S 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
log := "warn"
export JUST_LOG := log
2024-01-09 07:52:15 +00:00
watch +args='test':
cargo watch --clear --exec '{{ args }}'
test:
cargo test
2017-11-17 07:30:08 +00:00
ci: build-book
cargo test --all
2023-10-17 03:07:09 +00:00
cargo clippy --all --all-targets -- --deny warnings
cargo fmt --all -- --check
./bin/forbid
cargo update --locked --package just
2018-10-13 10:12:35 +00:00
fuzz:
cargo +nightly fuzz run fuzz-compiler
2018-10-13 10:12:35 +00:00
run:
cargo run
# only run tests matching PATTERN
filter PATTERN:
cargo test {{PATTERN}}
2016-10-28 22:25:59 +00:00
build:
cargo build
2016-10-28 22:25:59 +00:00
fmt:
cargo fmt --all
shellcheck:
shellcheck www/install.sh
man:
2024-06-05 19:17:05 +00:00
mkdir -p man
2024-05-15 07:28:50 +00:00
cargo run -- --man > man/just.1
view-man: man
man man/just.1
# add git log messages to changelog
update-changelog:
echo >> CHANGELOG.md
git log --pretty='format:- %s' >> CHANGELOG.md
update-contributors:
cargo run --release --package update-contributors
2022-01-30 20:16:10 +00:00
check: fmt clippy test forbid
#!/usr/bin/env bash
set -euxo pipefail
git diff --no-ext-diff --quiet --exit-code
2022-01-30 20:16:10 +00:00
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
grep "^\[$VERSION\]" CHANGELOG.md
2019-04-16 06:39:18 +00:00
# publish current GitHub master branch
publish:
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/release
git clone git@github.com:casey/just.git tmp/release
cd tmp/release
! grep '<sup>master</sup>' README.md
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
git tag -a $VERSION -m "Release $VERSION"
git push origin $VERSION
cargo publish
cd ../..
rm -rf tmp/release
2016-10-09 00:55:17 +00:00
readme-version-notes:
grep '<sup>master</sup>' README.md
push: check
! git branch | grep '* master'
git push github
pr: push
gh pr create --web
# clean up feature branch BRANCH
done BRANCH=`git rev-parse --abbrev-ref HEAD`:
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
cargo +nightly install cargo-fuzz
cargo install cargo-check
cargo install cargo-watch
cargo install mdbook mdbook-linkcheck
# everyone's favorite animate paper clip
2017-11-30 17:13:13 +00:00
clippy:
cargo clippy --all --all-targets --all-features
2021-05-11 06:58:05 +00:00
forbid:
./bin/forbid
2021-05-11 06:58:05 +00:00
# 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
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:
mkdir -p tmp
@echo '{{quine-text}}' > tmp/gen0.c
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
rm -r tmp
@echo 'It was a quine!'
2016-09-28 05:49:17 +00:00
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
test-completions:
./tests/completions/just.bash
2022-06-13 01:02:09 +00:00
build-book:
cargo run --package generate-book
mdbook build book/en
mdbook build book/zh
2023-01-16 08:42:34 +00:00
convert-integration-test test:
cargo expand --test integration {{test}} | \
sed \
-E \
-e 's/#\[cfg\(test\)\]/#\[test\]/' \
-e 's/^ *let test = //' \
-e 's/^ *test[.]/./' \
-e 's/;$//' \
-e 's/crate::test::Test/Test/' \
-e 's/\.run\(\)/.run();/'
# run all polyglot recipes
polyglot: _python _js _perl _sh _ruby
_python:
#!/usr/bin/env python3
print('Hello from python!')
2016-10-08 00:56:39 +00:00
_js:
#!/usr/bin/env node
console.log('Greetings from JavaScript!')
2016-10-08 00:56:39 +00:00
_perl:
#!/usr/bin/env perl
print "Larry Wall says Hi!\n";
2016-10-08 00:56:39 +00:00
_sh:
#!/usr/bin/env sh
hello='Yo'
echo "$hello from a shell script!"
2016-10-08 00:56:39 +00:00
_nu:
#!/usr/bin/env nu
let hellos = ["Greetings", "Yo", "Howdy"]
$hellos | each {|el| print $"($el) from a nushell script!" }
_ruby:
#!/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 :