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

84 lines
1.6 KiB
Makefile
Raw Normal View History

2016-10-29 10:14:41 +03:00
test: build
cargo test --lib
test-quine:
cargo run -- quine clean
2016-10-17 04:59:49 +03:00
backtrace:
RUST_BACKTRACE=1 cargo test --lib
2016-09-28 08:49:17 +03:00
2016-10-29 01:25:59 +03:00
build:
cargo build
2016-10-30 07:51:39 +03:00
check:
cargo check
version = `sed -En 's/version = "([^"]+)"/\1/p' Cargo.toml`
publish: clippy build
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
grep 'version("{{version}}")' src/app.rs
2016-11-02 10:28:33 +03:00
git push github master:master
git push origin master:master
2016-10-09 03:55:17 +03:00
cargo publish
git tag -a "v{{version}}" -m "v{{version}}"
git push github --tags
git push origin --tags
2016-10-09 03:55:17 +03:00
clippy:
rustup run nightly cargo clippy
install-clippy:
rustup run nightly cargo install clippy
install-nightly:
rustup install nightly
2016-10-27 19:50:06 +03:00
sloc:
@cat src/*.rs | wc -l
2016-10-04 09:55:55 +03:00
# make a quine, compile it, and verify it
quine: create
2016-09-28 08:49:17 +03: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 05:38:03 +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; }"
2016-10-04 09:55:55 +03:00
# create our quine
create:
mkdir -p tmp
2016-10-29 05:38:03 +03:00
echo '{{quine-text}}' > tmp/gen0.c
2016-10-04 09:55:55 +03:00
2016-09-28 08:49:17 +03:00
# clean up
clean:
rm -r tmp
2016-10-08 03:56:39 +03:00
# run all polyglot recipes
polyglot: python js perl sh ruby
2016-10-08 03:56:39 +03: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!"