2016-10-29 10:14:41 +03:00
|
|
|
test: build
|
2016-10-29 02:32:13 +03:00
|
|
|
cargo test --lib
|
2016-10-23 05:36:54 +03:00
|
|
|
|
2016-11-12 00:04:47 +03:00
|
|
|
# only run tests matching PATTERN
|
2016-11-12 01:33:17 +03:00
|
|
|
filter PATTERN: build
|
2016-11-05 09:56:15 +03:00
|
|
|
cargo test --lib {{PATTERN}}
|
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# test with backtrace
|
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
|
|
|
|
|
2016-11-12 22:40:52 +03:00
|
|
|
watch COMMAND='test':
|
|
|
|
cargo watch {{COMMAND}}
|
2016-11-12 21:28:47 +03:00
|
|
|
|
2016-11-12 06:23:46 +03:00
|
|
|
version = `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml`
|
2016-11-02 10:18:09 +03:00
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# publish to crates.io
|
2016-11-12 20:21:37 +03:00
|
|
|
publish: lint clippy test
|
2016-11-02 10:18:09 +03:00
|
|
|
git branch | grep '* master'
|
2016-10-29 06:48:53 +03:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2016-10-09 03:55:17 +03:00
|
|
|
cargo publish
|
2017-05-13 07:06:48 +03:00
|
|
|
git tag -a {{version}} -m 'Release {{version}}'
|
|
|
|
git push github {{version}}
|
2017-05-13 07:14:10 +03:00
|
|
|
git push github
|
2016-10-09 03:55:17 +03:00
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# clean up feature branch BRANCH
|
2016-11-12 05:52:27 +03:00
|
|
|
done BRANCH:
|
|
|
|
git checkout {{BRANCH}}
|
|
|
|
git pull --rebase github master
|
|
|
|
git checkout master
|
|
|
|
git pull --rebase github master
|
|
|
|
git branch -d {{BRANCH}}
|
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# install just from crates.io
|
2016-11-12 22:47:49 +03:00
|
|
|
install:
|
|
|
|
cargo install -f just
|
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# install development dependencies
|
2016-11-12 21:28:47 +03:00
|
|
|
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
|
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# everyone's favorite animate paper clip
|
2016-11-13 11:08:14 +03:00
|
|
|
clippy: lint
|
2016-11-14 02:03:33 +03:00
|
|
|
rustup run nightly cargo clippy -- -D clippy
|
2016-10-24 06:39:50 +03:00
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
# count non-empty lines of code
|
2016-10-27 19:50:06 +03:00
|
|
|
sloc:
|
2016-11-13 10:31:19 +03:00
|
|
|
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
2016-10-27 19:50:06 +03:00
|
|
|
|
2016-11-13 11:08:14 +03:00
|
|
|
@lint:
|
2016-11-13 10:31:19 +03:00
|
|
|
echo Checking for FIXME/TODO...
|
2016-11-12 18:56:13 +03:00
|
|
|
! grep --color -En 'FIXME|TODO' src/*.rs
|
2016-11-13 10:31:19 +03:00
|
|
|
echo Checking for long lines...
|
2017-05-13 05:09:47 +03:00
|
|
|
! grep --color -En '.{101}' src/*.rs
|
2016-11-08 08:01:27 +03:00
|
|
|
|
2016-11-12 04:05:14 +03:00
|
|
|
nop:
|
|
|
|
|
2016-11-08 08:01:27 +03:00
|
|
|
fail:
|
|
|
|
exit 1
|
|
|
|
|
2016-11-12 02:18:42 +03:00
|
|
|
backtick-fail:
|
|
|
|
echo {{`exit 1`}}
|
|
|
|
|
2016-11-13 10:31:19 +03:00
|
|
|
test-quine:
|
2016-11-24 07:20:32 +03:00
|
|
|
cargo run -- quine
|
2016-11-13 10:31:19 +03:00
|
|
|
|
2016-10-04 09:55:55 +03:00
|
|
|
# make a quine, compile it, and verify it
|
2016-11-24 07:20:32 +03:00
|
|
|
quine:
|
|
|
|
@echo '{{quine-text}}' > tmp/gen0.c
|
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-11-14 01:33:41 +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;"
|
2017-05-14 01:34:26 +03:00
|
|
|
"}";
|
2016-11-14 01:33:41 +03:00
|
|
|
printf(s, 34, s, 34);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
'
|
2016-10-28 10:10:19 +03:00
|
|
|
|
2016-10-24 07:25:23 +03:00
|
|
|
# run all polyglot recipes
|
2016-10-09 10:30:33 +03:00
|
|
|
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!"
|
2017-03-13 05:17:52 +03:00
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# mode: makefile
|
|
|
|
# End:
|
|
|
|
# vim: set ft=make :
|