just/justfile

169 lines
3.6 KiB
Makefile
Raw Normal View History

2016-10-29 00:14:41 -07:00
test: build
cargo test --lib
# only run tests matching PATTERN
filter PATTERN: build
cargo test --lib {{PATTERN}}
# 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
watch COMMAND='test':
cargo watch {{COMMAND}}
version = `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml`
# publish to crates.io
2016-11-12 09:21:37 -08:00
publish: lint clippy test
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
git checkout -b {{version}}
git push github
2016-10-08 17:55:17 -07: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-08 17:55:17 -07: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
build-and-fetch-linux-binary VERSION:
vagrant up
vagrant ssh -- 'bash -lc "cd just && git checkout build-binaries && git pull && just build-binary-linux {{VERSION}}"'
rm -rf tmp/linux
mkdir tmp/linux
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
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
mkdir tmp/just-{{VERSION}}-{{TARGET}}
cp \
GRAMMAR.md \
LICENSE.md \
README.md \
target/{{TARGET}}/release/just \
tmp/just-{{VERSION}}-{{TARGET}}
cd tmp && tar cvfz \
just-{{VERSION}}-{{TARGET}}.tar.gz \
just-{{VERSION}}-{{TARGET}}
# clean up feature branch BRANCH
done BRANCH:
git checkout {{BRANCH}}
git pull --rebase github master
git checkout master
git pull --rebase github master
git branch -d {{BRANCH}}
# push master to github as branch GITHUB-BRANCH
push GITHUB-BRANCH +FLAGS='':
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
git push {{FLAGS}} github master:refs/heads/{{GITHUB-BRANCH}}
# install just from crates.io
install:
cargo install -f just
# install development dependencies
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
# everyone's favorite animate paper clip
clippy: lint
2016-11-13 15:03:33 -08:00
rustup run nightly cargo clippy -- -D clippy
# count non-empty lines of code
2016-10-27 09:50:06 -07:00
sloc:
@cat src/*.rs | sed '/^\s*$/d' | wc -l
2016-10-27 09:50:06 -07:00
@lint:
echo Checking for FIXME/TODO...
! grep --color -En 'FIXME|TODO' src/*.rs
echo Checking for long lines...
! grep --color -En '.{100}' src/*.rs
nop:
fail:
exit 1
backtick-fail:
echo {{`exit 1`}}
test-quine:
cargo run -- quine
2016-10-03 23:55:55 -07:00
# make a quine, compile it, and verify it
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!'
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;
}
'
# run all polyglot recipes
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!"