1
1
mirror of https://github.com/casey/just.git synced 2024-11-22 10:26:26 +03:00
just/justfile

233 lines
4.5 KiB
Makefile
Raw Permalink 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 10:30:08 +03:00
log := "warn"
export JUST_LOG := log
2024-09-17 05:32:04 +03:00
[group: 'dev']
2024-01-09 10:52:15 +03:00
watch +args='test':
cargo watch --clear --exec '{{ args }}'
2024-09-17 05:32:04 +03:00
[group: 'test']
test:
cargo test --all
2024-09-17 05:32:04 +03:00
[group: 'check']
ci: forbid test build-book clippy
cargo fmt --all -- --check
cargo update --locked --package just
2024-09-17 05:32:04 +03:00
[group: 'check']
2018-10-13 13:12:35 +03:00
fuzz:
cargo +nightly fuzz run fuzz-compiler
2018-10-13 13:12:35 +03:00
2024-09-17 05:32:04 +03:00
[group: 'misc']
run:
cargo run
# only run tests matching `PATTERN`
2024-09-17 05:32:04 +03:00
[group: 'test']
filter PATTERN:
cargo test {{PATTERN}}
2024-09-17 05:32:04 +03:00
[group: 'misc']
2016-10-29 01:25:59 +03:00
build:
cargo build
2016-10-29 01:25:59 +03:00
2024-09-17 05:32:04 +03:00
[group: 'misc']
fmt:
cargo fmt --all
2024-09-17 05:32:04 +03:00
[group: 'check']
shellcheck:
shellcheck www/install.sh
2024-09-17 05:32:04 +03:00
[group: 'doc']
man:
2024-06-05 22:17:05 +03:00
mkdir -p man
2024-05-15 10:28:50 +03:00
cargo run -- --man > man/just.1
2024-09-17 05:32:04 +03:00
[group: 'doc']
view-man: man
man man/just.1
# add git log messages to changelog
2024-09-17 05:32:04 +03:00
[group: 'release']
update-changelog:
echo >> CHANGELOG.md
git log --pretty='format:- %s' >> CHANGELOG.md
2024-09-17 05:32:04 +03:00
[group: 'release']
update-contributors:
cargo run --release --package update-contributors
2024-09-17 05:32:04 +03:00
[group: 'check']
outdated:
cargo outdated -R
# publish current GitHub master branch
2024-09-17 05:32:04 +03:00
[group: 'release']
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 03:55:17 +03:00
2024-09-17 05:32:04 +03:00
[group: 'release']
readme-version-notes:
grep '<sup>master</sup>' README.md
# clean up feature branch BRANCH
2024-09-17 05:32:04 +03:00
[group: 'dev']
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
2024-09-17 05:32:04 +03:00
[group: 'misc']
install:
cargo install -f just
# install development dependencies
2024-09-17 05:32:04 +03:00
[group: 'dev']
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
2024-09-17 05:32:04 +03:00
[group: 'check']
2017-11-30 20:13:13 +03:00
clippy:
cargo clippy --all --all-targets --all-features -- --deny warnings
2024-09-17 05:32:04 +03:00
[group: 'check']
2021-05-11 09:58:05 +03:00
forbid:
./bin/forbid
2021-05-11 09:58:05 +03:00
2024-09-17 05:32:04 +03:00
[group: 'dev']
2017-11-17 10:30:08 +03:00
replace FROM TO:
sd '{{FROM}}' '{{TO}}' src/*.rs
2017-11-17 00:25:24 +03:00
2024-09-17 05:32:04 +03:00
[group: 'demo']
test-quine:
cargo run -- quine
2016-10-04 09:55:55 +03:00
# make a quine, compile it, and verify it
2024-09-17 05:32:04 +03:00
[group: 'demo']
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 08:49:17 +03: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;
}
'
2024-09-17 05:32:04 +03:00
[group: 'test']
test-completions:
./tests/completions/just.bash
2024-09-17 05:32:04 +03:00
[group: 'check']
2022-06-13 04:02:09 +03:00
build-book:
cargo run --package generate-book
mdbook build book/en
mdbook build book/zh
[group: 'dev']
print-readme-constants-table:
cargo test constants::tests::readme_table -- --nocapture
# run all polyglot recipes
2024-09-17 05:32:04 +03:00
[group: 'demo']
polyglot: _python _js _perl _sh _ruby
_python:
#!/usr/bin/env python3
print('Hello from python!')
2016-10-08 03:56:39 +03:00
_js:
#!/usr/bin/env node
console.log('Greetings from JavaScript!')
2016-10-08 03:56:39 +03:00
_perl:
#!/usr/bin/env perl
print "Larry Wall says Hi!\n";
2016-10-08 03:56:39 +03:00
_sh:
#!/usr/bin/env sh
hello='Yo'
echo "$hello from a shell script!"
2016-10-08 03:56:39 +03: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!
2024-09-17 05:32:04 +03:00
[group: 'demo']
pwd:
echo {{invocation_directory()}}
2024-09-17 05:32:04 +03:00
[group: 'test']
test-bash-completions:
rm -rf tmp
mkdir -p tmp/bin
cargo build
cp target/debug/just tmp/bin
./tmp/bin/just --completions bash > tmp/just.bash
echo 'mod foo' > tmp/justfile
echo 'bar:' > tmp/foo.just
cd tmp && PATH="`realpath bin`:$PATH" bash --init-file just.bash
2024-09-17 05:32:04 +03:00
[group: 'test']
test-release-workflow:
-git tag -d test-release
-git push origin :test-release
git tag test-release
git push origin test-release
# Local Variables:
# mode: makefile
# End:
# vim: set ft=make :