2022-09-03 21:18:53 -07:00
|
|
|
#!/usr/bin/env -S just --justfile
|
2019-04-08 14:28:17 -07:00
|
|
|
# ^ 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
|
|
|
|
2020-03-31 00:00:05 -07:00
|
|
|
log := "warn"
|
|
|
|
|
|
|
|
export JUST_LOG := log
|
|
|
|
|
2024-01-08 23:52:15 -08:00
|
|
|
watch +args='test':
|
|
|
|
cargo watch --clear --exec '{{ args }}'
|
|
|
|
|
2019-04-11 15:23:14 -07:00
|
|
|
test:
|
2022-05-27 22:52:09 -07:00
|
|
|
cargo test
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2022-07-20 18:46:52 -07:00
|
|
|
ci: build-book
|
|
|
|
cargo test --all
|
2023-10-16 20:07:09 -07:00
|
|
|
cargo clippy --all --all-targets -- --deny warnings
|
2022-07-20 18:46:52 -07:00
|
|
|
cargo fmt --all -- --check
|
|
|
|
./bin/forbid
|
|
|
|
cargo update --locked --package just
|
|
|
|
|
2018-10-13 03:12:35 -07:00
|
|
|
fuzz:
|
2021-06-26 13:41:07 -07:00
|
|
|
cargo +nightly fuzz run fuzz-compiler
|
2018-10-13 03:12:35 -07:00
|
|
|
|
2020-03-31 00:00:05 -07:00
|
|
|
run:
|
2021-06-26 13:41:07 -07:00
|
|
|
cargo run
|
2020-03-31 00:00:05 -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:
|
2022-05-27 22:52:09 -07:00
|
|
|
cargo test {{PATTERN}}
|
2016-11-04 23:56:15 -07:00
|
|
|
|
2016-10-28 15:25:59 -07:00
|
|
|
build:
|
2022-05-27 22:52:09 -07:00
|
|
|
cargo build
|
2016-10-28 15:25:59 -07:00
|
|
|
|
2020-02-10 20:07:06 -08:00
|
|
|
fmt:
|
2021-09-16 06:44:40 -07:00
|
|
|
cargo fmt --all
|
2020-02-10 20:07:06 -08:00
|
|
|
|
2024-02-19 21:40:27 -08:00
|
|
|
shellcheck:
|
|
|
|
shellcheck www/install.sh
|
|
|
|
|
2019-07-18 21:58:06 -07:00
|
|
|
man:
|
2024-06-05 12:17:05 -07:00
|
|
|
mkdir -p man
|
2024-05-15 00:28:50 -07:00
|
|
|
cargo run -- --man > man/just.1
|
2019-12-11 17:08:48 -08:00
|
|
|
|
|
|
|
view-man: man
|
2021-06-26 13:41:07 -07:00
|
|
|
man man/just.1
|
2019-07-18 21:58:06 -07:00
|
|
|
|
2020-02-06 12:25:09 -08:00
|
|
|
# add git log messages to changelog
|
2022-10-25 14:42:11 -07:00
|
|
|
update-changelog:
|
2023-11-08 13:43:26 -08:00
|
|
|
echo >> CHANGELOG.md
|
2022-10-25 14:42:11 -07:00
|
|
|
git log --pretty='format:- %s' >> CHANGELOG.md
|
2020-02-06 12:25:09 -08:00
|
|
|
|
2022-10-26 22:48:39 -07:00
|
|
|
update-contributors:
|
|
|
|
cargo run --release --package update-contributors
|
|
|
|
|
2022-01-30 12:16:10 -08:00
|
|
|
check: fmt clippy test forbid
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
2021-06-26 13:41:07 -07:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2022-01-30 12:16:10 -08:00
|
|
|
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
|
|
|
|
grep "^\[$VERSION\]" CHANGELOG.md
|
2019-04-15 23:39:18 -07:00
|
|
|
|
2021-11-21 17:28:42 -08: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
|
2022-10-24 21:11:35 -07:00
|
|
|
! grep '<sup>master</sup>' README.md
|
|
|
|
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
|
2021-11-21 17:28:42 -08:00
|
|
|
git tag -a $VERSION -m "Release $VERSION"
|
2021-12-04 23:46:46 -08:00
|
|
|
git push origin $VERSION
|
2021-06-26 13:41:07 -07:00
|
|
|
cargo publish
|
2021-11-21 17:28:42 -08:00
|
|
|
cd ../..
|
|
|
|
rm -rf tmp/release
|
2016-10-08 17:55:17 -07:00
|
|
|
|
2022-11-02 16:57:33 -07:00
|
|
|
readme-version-notes:
|
|
|
|
grep '<sup>master</sup>' README.md
|
|
|
|
|
2020-03-18 09:03:21 -07:00
|
|
|
push: check
|
2021-06-26 13:41:07 -07:00
|
|
|
! git branch | grep '* master'
|
|
|
|
git push github
|
2020-03-18 08:19:43 -07:00
|
|
|
|
|
|
|
pr: push
|
2021-06-26 13:41:07 -07:00
|
|
|
gh pr create --web
|
2020-03-18 08:19:43 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# clean up feature branch BRANCH
|
2020-03-18 09:03:21 -07:00
|
|
|
done BRANCH=`git rev-parse --abbrev-ref HEAD`:
|
2021-06-26 13:41:07 -07:00
|
|
|
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}}
|
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:
|
2021-06-26 13:41:07 -07:00
|
|
|
cargo install -f just
|
2016-11-12 11:47:49 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# install development dependencies
|
2016-11-12 10:28:47 -08:00
|
|
|
install-dev-deps:
|
2021-06-26 13:41:07 -07:00
|
|
|
rustup install nightly
|
|
|
|
rustup update nightly
|
|
|
|
cargo +nightly install cargo-fuzz
|
2021-07-29 00:09:22 -07:00
|
|
|
cargo install cargo-check
|
|
|
|
cargo install cargo-watch
|
2022-07-06 13:36:28 -07:00
|
|
|
cargo install mdbook mdbook-linkcheck
|
2016-11-12 10:28:47 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# everyone's favorite animate paper clip
|
2017-11-30 09:13:13 -08:00
|
|
|
clippy:
|
2022-05-27 22:52:09 -07:00
|
|
|
cargo clippy --all --all-targets --all-features
|
2016-10-23 20:39:50 -07:00
|
|
|
|
2021-05-10 23:58:05 -07:00
|
|
|
forbid:
|
2021-06-26 13:41:07 -07:00
|
|
|
./bin/forbid
|
2021-05-10 23:58:05 -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:
|
2021-06-26 13:41:07 -07:00
|
|
|
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
2016-10-27 09:50:06 -07:00
|
|
|
|
2017-11-16 23:30:08 -08:00
|
|
|
replace FROM TO:
|
2021-06-26 13:41:07 -07:00
|
|
|
sd '{{FROM}}' '{{TO}}' src/*.rs
|
2017-11-16 13:25:24 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
test-quine:
|
2021-06-26 13:41:07 -07: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:
|
2021-06-26 13:41:07 -07:00
|
|
|
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-27 22:49:17 -07:00
|
|
|
|
2019-05-07 20:15:22 -07:00
|
|
|
quine-text := '
|
2021-06-26 13:41:07 -07: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;"
|
|
|
|
"}";
|
|
|
|
printf(s, 34, s, 34);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-11-13 14:33:41 -08:00
|
|
|
'
|
2016-10-28 00:10:19 -07:00
|
|
|
|
2017-10-12 16:12:23 -07:00
|
|
|
render-readme:
|
2021-06-26 13:41:07 -07:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
require 'github/markup'
|
|
|
|
$rendered = GitHub::Markup.render("README.adoc", File.read("README.adoc"))
|
|
|
|
File.write('tmp/README.html', $rendered)
|
2017-10-12 16:12:23 -07:00
|
|
|
|
|
|
|
watch-readme:
|
2021-06-26 13:41:07 -07:00
|
|
|
just render-readme
|
|
|
|
fswatch -ro README.adoc | xargs -n1 -I{} just render-readme
|
2017-10-12 16:12:23 -07:00
|
|
|
|
2022-09-23 20:54:18 -07:00
|
|
|
test-completions:
|
|
|
|
./tests/completions/just.bash
|
|
|
|
|
2022-06-12 18:02:09 -07:00
|
|
|
build-book:
|
|
|
|
cargo run --package generate-book
|
|
|
|
mdbook build book/en
|
|
|
|
mdbook build book/zh
|
|
|
|
|
2023-01-16 00:42:34 -08: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();/'
|
|
|
|
|
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
|
2016-10-09 00:30:33 -07:00
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_python:
|
2021-06-26 13:41:07 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
print('Hello from python!')
|
2016-10-07 17:56:39 -07:00
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_js:
|
2021-06-26 13:41:07 -07:00
|
|
|
#!/usr/bin/env node
|
|
|
|
console.log('Greetings from JavaScript!')
|
2016-10-07 17:56:39 -07:00
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_perl:
|
2021-06-26 13:41:07 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
print "Larry Wall says Hi!\n";
|
2016-10-07 17:56:39 -07:00
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_sh:
|
2021-06-26 13:41:07 -07:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
hello='Yo'
|
|
|
|
echo "$hello from a shell script!"
|
2016-10-07 17:56:39 -07:00
|
|
|
|
2024-05-14 17:53:59 -07:00
|
|
|
_nu:
|
|
|
|
#!/usr/bin/env nu
|
|
|
|
let hellos = ["Greetings", "Yo", "Howdy"]
|
|
|
|
$hellos | each {|el| print $"($el) from a nushell script!" }
|
|
|
|
|
2019-04-12 01:42:05 -07:00
|
|
|
_ruby:
|
2021-06-26 13:41:07 -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:
|
2021-06-26 13:41:07 -07:00
|
|
|
echo {{invocation_directory()}}
|
2018-06-19 10:04:03 -07:00
|
|
|
|
2024-07-04 10:49:54 -07:00
|
|
|
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
|
|
|
|
|
2017-03-12 19:17:52 -07:00
|
|
|
# Local Variables:
|
|
|
|
# mode: makefile
|
|
|
|
# End:
|
|
|
|
# vim: set ft=make :
|