forked from codeclimate-community/codeclimate-flog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
47 lines (32 loc) · 1.02 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- ruby -*-
require "hoe"
Hoe.plugin :minitest
Hoe.spec "blah" do
developer "Ryan Davis", "[email protected]"
license "MIT"
end
task :all => %w[test image run]
task :sync do
sh "rsync -avPC --del --exclude unreadable.rb ~/Work/p4/zss/src/flog/dev/ flog"
end
IMAGE_NAME = "codeclimate/codeclimate-flog"
task "test:local" => :test
task "test:remote" => "image" do
sh %(docker run --rm -it --workdir /usr/src/app #{IMAGE_NAME} rake test:local)
end
task :image do
sh "docker build --rm -t #{IMAGE_NAME} ."
end
ENV["CODECLIMATE_DEBUG"] = "1" if ENV["DEBUG"]
task :run do
sh "codeclimate analyze --dev | cat" # cat disables tty and spinner
end
task :purge do
sh "docker ps -a | awk '!/gc-config/ && /Exited/ { print $1 }' | xargs docker rm"
sh "docker images | grep none.*none | awk '{print $3}' | xargs docker rmi"
end
task :purgeall do
sh "docker ps -a | awk '!/gc-config/ && /Exited/ { print $1 }' | xargs docker rm"
sh "docker images | awk '{print $3}' | xargs docker rmi"
end
# vim: syntax=ruby