2016-10-29 00:14:41 -07:00
|
|
|
test: build
|
2016-10-28 16:32:13 -07:00
|
|
|
cargo test --lib
|
2016-10-22 19:36:54 -07:00
|
|
|
|
2016-11-11 13:04:47 -08:00
|
|
|
# only run tests matching PATTERN
|
2016-11-11 14:33:17 -08:00
|
|
|
filter PATTERN: build
|
2016-11-04 23:56:15 -07:00
|
|
|
cargo test --lib {{PATTERN}}
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# test with backtrace
|
2016-10-16 18:59:49 -07:00
|
|
|
backtrace:
|
|
|
|
RUST_BACKTRACE=1 cargo test --lib
|
2016-09-27 22:49:17 -07:00
|
|
|
|
2016-10-28 15:25:59 -07:00
|
|
|
build:
|
|
|
|
cargo build
|
|
|
|
|
2016-10-29 21:51:39 -07:00
|
|
|
check:
|
|
|
|
cargo check
|
|
|
|
|
2016-11-12 11:40:52 -08:00
|
|
|
watch COMMAND='test':
|
|
|
|
cargo watch {{COMMAND}}
|
2016-11-12 10:28:47 -08:00
|
|
|
|
2016-11-11 19:23:46 -08:00
|
|
|
version = `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml`
|
2016-11-02 00:18:09 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# publish to crates.io
|
2016-11-12 09:21:37 -08:00
|
|
|
publish: lint clippy test
|
2016-11-02 00:18:09 -07:00
|
|
|
git branch | grep '* master'
|
2016-10-28 20:48:53 -07:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2016-11-23 19:40:06 -08:00
|
|
|
git checkout -b {{version}}
|
2016-11-05 01:51:56 -07:00
|
|
|
git push github
|
2016-10-08 17:55:17 -07:00
|
|
|
cargo publish
|
2016-11-11 19:23:46 -08:00
|
|
|
git tag -a {{version}} -m {{version}}
|
2016-11-02 00:18:09 -07:00
|
|
|
git push github --tags
|
|
|
|
git push origin --tags
|
2016-11-11 19:23:46 -08:00
|
|
|
@echo 'Remember to merge the {{version}} branch on GitHub!'
|
2016-10-08 17:55:17 -07:00
|
|
|
|
2016-11-23 19:40:06 -08:00
|
|
|
build-binary-mac VERSION:
|
|
|
|
just build-binary {{VERSION}} x86_64-apple-darwin
|
|
|
|
|
|
|
|
build-binary-linux VERSION:
|
|
|
|
just build-binary {{VERSION}} x86_64-unknown-linux-musl
|
|
|
|
|
2016-11-23 20:20:32 -08:00
|
|
|
build-and-fetch-linux-binary VERSION:
|
|
|
|
vagrant up
|
2016-11-23 20:28:40 -08:00
|
|
|
vagrant ssh -- 'bash -lc "cd just && git checkout master && git pull && just build-binary-linux {{VERSION}}"'
|
2016-11-23 20:20:32 -08:00
|
|
|
rm -rf tmp/linux
|
2016-11-23 20:32:03 -08:00
|
|
|
mkdir -p tmp/linux
|
2016-11-23 20:20:32 -08:00
|
|
|
scp \
|
|
|
|
-P 2222 \
|
|
|
|
-i .vagrant/machines/default/virtualbox/private_key \
|
|
|
|
'vagrant@127.0.0.1:just/tmp/*-x86_64-unknown-linux-musl.tar.gz' \
|
|
|
|
tmp/linux
|
|
|
|
|
2016-11-23 19:40:06 -08:00
|
|
|
build-binary VERSION TARGET:
|
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
|
|
|
git checkout {{VERSION}}
|
|
|
|
cargo build --release --target={{TARGET}}
|
|
|
|
rm -rf tmp/just-{{VERSION}}-{{TARGET}}
|
|
|
|
rm -rf tmp/just-{{VERSION}}-{{TARGET}}.tar.gz
|
2016-11-23 20:32:03 -08:00
|
|
|
mkdir -p tmp/just-{{VERSION}}-{{TARGET}}
|
2016-11-23 19:40:06 -08:00
|
|
|
cp \
|
|
|
|
GRAMMAR.md \
|
|
|
|
LICENSE.md \
|
|
|
|
README.md \
|
2016-11-23 20:20:32 -08:00
|
|
|
target/{{TARGET}}/release/just \
|
2016-11-23 19:40:06 -08:00
|
|
|
tmp/just-{{VERSION}}-{{TARGET}}
|
|
|
|
cd tmp && tar cvfz \
|
|
|
|
just-{{VERSION}}-{{TARGET}}.tar.gz \
|
|
|
|
just-{{VERSION}}-{{TARGET}}
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# clean up feature branch BRANCH
|
2016-11-11 18:52:27 -08: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 00:01:42 -08:00
|
|
|
# push master to github as branch GITHUB-BRANCH
|
2016-11-18 07:14:48 -08:00
|
|
|
push GITHUB-BRANCH +FLAGS='':
|
2016-11-13 00:01:42 -08:00
|
|
|
git branch | grep '* master'
|
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2016-11-18 07:14:48 -08:00
|
|
|
git push {{FLAGS}} github master:refs/heads/{{GITHUB-BRANCH}}
|
2016-11-16 22:18:55 -08:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# install just from crates.io
|
2016-11-12 11:47:49 -08:00
|
|
|
install:
|
|
|
|
cargo install -f just
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
# install development dependencies
|
2016-11-12 10:28:47 -08: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-12 23:31:19 -08:00
|
|
|
# everyone's favorite animate paper clip
|
2016-11-13 00:08:14 -08:00
|
|
|
clippy: lint
|
2016-11-13 15:03:33 -08:00
|
|
|
rustup run nightly cargo clippy -- -D clippy
|
2016-10-23 20:39:50 -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:
|
2016-11-12 23:31:19 -08:00
|
|
|
@cat src/*.rs | sed '/^\s*$/d' | wc -l
|
2016-10-27 09:50:06 -07:00
|
|
|
|
2016-11-13 00:08:14 -08:00
|
|
|
@lint:
|
2016-11-12 23:31:19 -08:00
|
|
|
echo Checking for FIXME/TODO...
|
2016-11-12 07:56:13 -08:00
|
|
|
! grep --color -En 'FIXME|TODO' src/*.rs
|
2016-11-12 23:31:19 -08:00
|
|
|
echo Checking for long lines...
|
2016-11-12 07:56:13 -08:00
|
|
|
! grep --color -En '.{100}' src/*.rs
|
2016-11-07 21:01:27 -08:00
|
|
|
|
2016-11-11 17:05:14 -08:00
|
|
|
nop:
|
|
|
|
|
2016-11-07 21:01:27 -08:00
|
|
|
fail:
|
|
|
|
exit 1
|
|
|
|
|
2016-11-11 15:18:42 -08:00
|
|
|
backtick-fail:
|
|
|
|
echo {{`exit 1`}}
|
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
test-quine:
|
2016-11-23 20:20:32 -08: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:
|
|
|
|
@echo '{{quine-text}}' > tmp/gen0.c
|
2016-09-27 22:49:17 -07: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-13 14:33:41 -08: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-28 00:10:19 -07:00
|
|
|
|
2016-10-23 21:25:23 -07:00
|
|
|
# run all polyglot recipes
|
2016-10-09 00:30:33 -07:00
|
|
|
polyglot: python js perl sh ruby
|
|
|
|
|
2016-10-07 17:56:39 -07: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-12 19:17:52 -07:00
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# mode: makefile
|
|
|
|
# End:
|
|
|
|
# vim: set ft=make :
|