1
0
mirror of https://github.com/casey/just synced 2024-07-08 20:16:14 +00:00
just/justfile

111 lines
2.1 KiB
Makefile
Raw Normal View History

2016-10-29 07:14:41 +00:00
test: build
cargo test --lib
# only run tests matching PATTERN
filter PATTERN: build
cargo test --lib {{PATTERN}}
test-quine:
cargo run -- quine clean
2016-10-17 01:59:49 +00:00
backtrace:
RUST_BACKTRACE=1 cargo test --lib
2016-09-28 05:49:17 +00:00
2016-10-28 22:25:59 +00:00
build:
cargo build
2016-10-30 04:51:39 +00:00
check:
cargo check
watch COMMAND='test':
cargo watch {{COMMAND}}
version = `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml`
2016-11-12 17:21:37 +00:00
publish: lint clippy test
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
git co -b {{version}}
git push github
2016-10-09 00:55:17 +00:00
cargo publish
git tag -a {{version}} -m {{version}}
git push github --tags
git push origin --tags
@echo 'Remember to merge the {{version}} branch on GitHub!'
2016-10-09 00:55:17 +00:00
done BRANCH:
git checkout {{BRANCH}}
git pull --rebase github master
git checkout master
git pull --rebase github master
git branch -d {{BRANCH}}
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
clippy:
rustup run nightly cargo clippy
2016-10-27 16:50:06 +00:00
sloc:
@cat src/*.rs | wc -l
lint:
! grep --color -En 'FIXME|TODO' src/*.rs
! grep --color -En '.{100}' src/*.rs
nop:
fail:
exit 1
backtick-fail:
echo {{`exit 1`}}
2016-10-04 06:55:55 +00:00
# make a quine, compile it, and verify it
quine: create
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
@echo 'It was a quine!'
2016-10-29 02:38:03 +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; }"
2016-10-04 06:55:55 +00:00
# create our quine
create:
mkdir -p tmp
2016-10-29 02:38:03 +00:00
echo '{{quine-text}}' > tmp/gen0.c
2016-10-04 06:55:55 +00:00
2016-09-28 05:49:17 +00:00
# clean up
clean:
rm -r tmp
2016-10-08 00:56:39 +00:00
# run all polyglot recipes
polyglot: python js perl sh ruby
2016-10-08 00:56:39 +00:00
python:
#!/usr/bin/env python3
print('Hello from python!')
js:
#!/usr/bin/env node
console.log('Greetings from JavaScript!')
perl:
#!/usr/bin/env perl
print "Larry Wall says Hi!\n";
sh:
#!/usr/bin/env sh
hello='Yo'
echo "$hello from a shell script!"
ruby:
#!/usr/bin/env ruby
puts "Hello from ruby!"