bin/*: remove redundant $DEBUG check
[unicorn.git] / GNUmakefile
blob70707ce605e1a132522566a102614f712b1ba788
1 # use GNU Make to run tests in parallel, and without depending on RubyGems
2 all:: test
4 GIT_URL = git://git.bogomips.org/unicorn.git
5 RLFLAGS = -G2
7 # lower-case vars are deprecated
8 RUBY = ruby
9 RAKE = rake
10 RAGEL = ragel
12 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
13 @./GIT-VERSION-GEN
14 -include GIT-VERSION-FILE
15 -include local.mk
16 ruby_bin := $(shell which $(RUBY))
17 ifeq ($(DLEXT),) # "so" for Linux
18 DLEXT := $(shell $(RUBY) -rrbconfig -e 'puts Config::CONFIG["DLEXT"]')
19 endif
20 ifeq ($(RUBY_VERSION),)
21 RUBY_VERSION := $(shell $(RUBY) -e 'puts RUBY_VERSION')
22 endif
24 # dunno how to implement this as concisely in Ruby, and hell, I love awk
25 awk_slow := awk '/def test_/{print FILENAME"--"$$2".n"}' 2>/dev/null
27 rails_vers := $(subst test/rails/app-,,$(wildcard test/rails/app-*))
28 slow_tests := test/unit/test_server.rb test/exec/test_exec.rb \
29 test/unit/test_signals.rb test/unit/test_upload.rb
30 log_suffix = .$(RUBY_VERSION).log
31 T_r := $(wildcard test/rails/test*.rb)
32 T := $(filter-out $(slow_tests) $(T_r), $(wildcard test/*/test*.rb))
33 T_n := $(shell $(awk_slow) $(slow_tests))
34 T_log := $(subst .rb,$(log_suffix),$(T))
35 T_n_log := $(subst .n,$(log_suffix),$(T_n))
36 T_r_log := $(subst .r,$(log_suffix),$(T_r))
37 test_prefix = $(CURDIR)/test/install-$(RUBY_VERSION)
39 ext := ext/unicorn_http
40 c_files := $(ext)/unicorn_http.c $(wildcard $(ext)/*.h)
41 rl_files := $(wildcard $(ext)/*.rl)
42 base_bins := unicorn unicorn_rails
43 bins := $(addprefix bin/, $(base_bins))
44 man1_bins := $(addsuffix .1, $(base_bins))
45 man1_paths := $(addprefix man/man1/, $(man1_bins))
46 rb_files := $(bins) $(shell find lib ext -type f -name '*.rb')
47 inst_deps := $(c_files) $(rb_files) GNUmakefile test/test_helper.rb
49 ragel: $(ext)/unicorn_http.c
50 $(ext)/unicorn_http.c: $(rl_files)
51 cd $(@D) && $(RAGEL) unicorn_http.rl -C $(RLFLAGS) -o $(@F)
52 $(ext)/Makefile: $(ext)/extconf.rb $(c_files)
53 cd $(@D) && $(RUBY) extconf.rb
54 $(ext)/unicorn_http.$(DLEXT): $(ext)/Makefile
55 $(MAKE) -C $(@D)
56 lib/unicorn_http.$(DLEXT): $(ext)/unicorn_http.$(DLEXT)
57 @mkdir -p lib
58 install -m644 $< $@
59 http: lib/unicorn_http.$(DLEXT)
61 test-install: $(test_prefix)/.stamp
62 $(test_prefix)/.stamp: $(inst_deps)
63 mkdir -p $(test_prefix)/.ccache
64 tar cf - $(inst_deps) GIT-VERSION-GEN | \
65 (cd $(test_prefix) && tar xf -)
66 $(MAKE) -C $(test_prefix) clean
67 $(MAKE) -C $(test_prefix) http shebang
68 > $@
70 # this is only intended to be run within $(test_prefix)
71 shebang: $(bins)
72 $(RUBY) -i -p -e '$$_.gsub!(%r{^#!.*$$},"#!$(ruby_bin)")' $^
74 t_log := $(T_log) $(T_n_log)
75 test: $(T) $(T_n)
76 @cat $(t_log) | $(RUBY) test/aggregate.rb
77 @$(RM) $(t_log)
79 test-exec: $(wildcard test/exec/test_*.rb)
80 test-unit: $(wildcard test/unit/test_*.rb)
81 $(slow_tests): $(test_prefix)/.stamp
82 @$(MAKE) $(shell $(awk_slow) $@)
84 TEST_OPTS = -v
85 check_test = grep '0 failures, 0 errors' $(t) >/dev/null
86 ifndef V
87 quiet_pre = @echo '* $(arg)$(extra)';
88 quiet_post = >$(t) 2>&1 && $(check_test)
89 else
90 # we can't rely on -o pipefail outside of bash 3+,
91 # so we use a stamp file to indicate success and
92 # have rm fail if the stamp didn't get created
93 stamp = $@$(log_suffix).ok
94 quiet_pre = @echo $(RUBY) $(arg) $(TEST_OPTS); ! test -f $(stamp) && (
95 quiet_post = && > $(stamp) )2>&1 | tee $(t); \
96 rm $(stamp) 2>/dev/null && $(check_test)
97 endif
99 # not all systems have setsid(8), we need it because we spam signals
100 # stupidly in some tests...
101 rb_setsid := $(RUBY) -e 'Process.setsid' -e 'exec *ARGV'
103 # TRACER='strace -f -o $(t).strace -s 100000'
104 run_test = $(quiet_pre) \
105 $(rb_setsid) $(TRACER) $(RUBY) -w $(arg) $(TEST_OPTS) $(quiet_post) || \
106 (sed "s,^,$(extra): ," >&2 < $(t); exit 1)
108 %.n: arg = $(subst .n,,$(subst --, -n ,$@))
109 %.n: t = $(subst .n,$(log_suffix),$@)
110 %.n: export PATH := $(test_prefix)/bin:$(PATH)
111 %.n: export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
112 %.n: $(test_prefix)/.stamp
113 $(run_test)
115 $(T): arg = $@
116 $(T): t = $(subst .rb,$(log_suffix),$@)
117 $(T): export PATH := $(test_prefix)/bin:$(PATH)
118 $(T): export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
119 $(T): $(test_prefix)/.stamp
120 $(run_test)
122 install: $(bins) $(ext)/unicorn_http.c
123 $(prep_setup_rb)
124 $(RM) lib/unicorn_http.$(DLEXT)
125 $(RM) -r .install-tmp
126 mkdir .install-tmp
127 cp -p bin/* .install-tmp
128 $(RUBY) setup.rb all
129 $(RM) $^
130 mv .install-tmp/* bin/
131 $(RM) -r .install-tmp
132 $(prep_setup_rb)
134 setup_rb_files := .config InstalledFiles
135 prep_setup_rb := @-$(RM) $(setup_rb_files);$(MAKE) -C $(ext) clean
137 clean:
138 -$(MAKE) -C $(ext) clean
139 -$(MAKE) -C Documentation clean
140 $(RM) $(ext)/Makefile lib/unicorn_http.$(DLEXT)
141 $(RM) $(setup_rb_files) $(t_log)
142 $(RM) -r $(test_prefix) man
144 man:
145 $(MAKE) -C Documentation install-man
147 pkg_extra := GIT-VERSION-FILE NEWS ChangeLog $(ext)/unicorn_http.c
148 manifest: $(pkg_extra) man
149 $(RM) .manifest
150 $(MAKE) .manifest
152 .manifest:
153 (git ls-files && \
154 for i in $@ $(pkg_extra) $(man1_paths); \
155 do echo $$i; done) | LC_ALL=C sort > $@+
156 cmp $@+ $@ || mv $@+ $@
157 $(RM) $@+
159 NEWS: GIT-VERSION-FILE .manifest
160 $(RAKE) -s news_rdoc > $@+
161 mv $@+ $@
163 SINCE = 0.95.0
164 ChangeLog: LOG_VERSION = \
165 $(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
166 echo $(GIT_VERSION) || git describe)
167 ChangeLog: log_range = v$(SINCE)..$(LOG_VERSION)
168 ChangeLog: GIT-VERSION-FILE
169 @echo "ChangeLog from $(GIT_URL) ($(log_range))" > $@+
170 @echo >> $@+
171 git log $(log_range) | sed -e 's/^/ /' >> $@+
172 mv $@+ $@
174 news_atom := http://unicorn.bogomips.org/NEWS.atom.xml
175 cgit_atom := http://git.bogomips.org/cgit/unicorn.git/atom/?h=master
176 atom = <link rel="alternate" title="Atom feed" href="$(1)" \
177 type="application/atom+xml"/>
179 # using rdoc 2.4.1+
180 doc: .document $(ext)/unicorn_http.c NEWS ChangeLog
181 for i in $(man1_bins); do > $$i; done
182 find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
183 rdoc -Na -t "$(shell sed -ne '1s/^= //p' README)"
184 install -m644 COPYING doc/COPYING
185 install -m644 $(shell grep '^[A-Z]' .document) doc/
186 $(MAKE) -C Documentation install-html install-man
187 install -m644 $(man1_paths) doc/
188 cd doc && for i in $(base_bins); do \
189 sed -e '/"documentation">/r man1/'$$i'.1.html' \
190 < $${i}_1.html > tmp && mv tmp $${i}_1.html; done
191 $(RUBY) -i -p -e \
192 '$$_.gsub!("</title>",%q{\&$(call atom,$(cgit_atom))})' \
193 doc/ChangeLog.html
194 $(RUBY) -i -p -e \
195 '$$_.gsub!("</title>",%q{\&$(call atom,$(news_atom))})' \
196 doc/NEWS.html doc/README.html
197 $(RAKE) -s news_atom > doc/NEWS.atom.xml
198 cd doc && ln README.html tmp && mv tmp index.html
199 $(RM) $(man1_bins)
201 rails_git_url = git://github.com/rails/rails.git
202 rails_git := vendor/rails.git
203 $(rails_git)/info/cloned-stamp:
204 git clone --mirror -q $(rails_git_url) $(rails_git)
205 > $@
207 rails_tests := $(addsuffix .r,$(addprefix $(T_r).,$(rails_vers)))
208 test-rails: $(rails_tests)
209 $(T_r).%.r: t = $(addsuffix $(log_suffix),$@)
210 $(T_r).%.r: rv = $(subst .r,,$(subst $(T_r).,,$@))
211 $(T_r).%.r: extra = ' 'v$(rv)
212 $(T_r).%.r: arg = $(T_r)
213 $(T_r).%.r: export PATH := $(test_prefix)/bin:$(PATH)
214 $(T_r).%.r: export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(RUBYLIB)
215 $(T_r).%.r: export UNICORN_RAILS_TEST_VERSION = $(rv)
216 $(T_r).%.r: export RAILS_GIT_REPO = $(CURDIR)/$(rails_git)
217 $(T_r).%.r: $(test_prefix)/.stamp $(rails_git)/info/cloned-stamp
218 $(run_test)
220 ifneq ($(VERSION),)
221 rfproject := mongrel
222 rfpackage := unicorn
223 pkggem := pkg/$(rfpackage)-$(VERSION).gem
224 pkgtgz := pkg/$(rfpackage)-$(VERSION).tgz
225 release_notes := release_notes-$(VERSION)
226 release_changes := release_changes-$(VERSION)
228 release-notes: $(release_notes)
229 release-changes: $(release_changes)
230 $(release_changes):
231 $(RAKE) -s release_changes > $@+
232 $(VISUAL) $@+ && test -s $@+ && mv $@+ $@
233 $(release_notes):
234 GIT_URL=$(GIT_URL) $(RAKE) -s release_notes > $@+
235 $(VISUAL) $@+ && test -s $@+ && mv $@+ $@
237 # ensures we're actually on the tagged $(VERSION), only used for release
238 verify:
239 test x"$(shell umask)" = x0022
240 git rev-parse --verify refs/tags/v$(VERSION)^{}
241 git diff-index --quiet HEAD^0
242 test `git rev-parse --verify HEAD^0` = \
243 `git rev-parse --verify refs/tags/v$(VERSION)^{}`
245 fix-perms:
246 git ls-tree -r HEAD | awk '/^100644 / {print $$NF}' | xargs chmod 644
247 git ls-tree -r HEAD | awk '/^100755 / {print $$NF}' | xargs chmod 755
249 gem: $(pkggem)
251 install-gem: $(pkggem)
252 gem install $(CURDIR)/$<
254 $(pkggem): manifest fix-perms
255 gem build $(rfpackage).gemspec
256 mkdir -p pkg
257 mv $(@F) $@
259 $(pkgtgz): distdir = $(basename $@)
260 $(pkgtgz): HEAD = v$(VERSION)
261 $(pkgtgz): manifest fix-perms
262 @test -n "$(distdir)"
263 $(RM) -r $(distdir)
264 mkdir -p $(distdir)
265 tar cf - `cat .manifest` | (cd $(distdir) && tar xf -)
266 cd pkg && tar cf - $(basename $(@F)) | gzip -9 > $(@F)+
267 mv $@+ $@
269 package: $(pkgtgz) $(pkggem)
271 release: verify package $(release_notes) $(release_changes)
272 # make tgz release on RubyForge
273 rubyforge add_release -f -n $(release_notes) -a $(release_changes) \
274 $(rfproject) $(rfpackage) $(VERSION) $(pkgtgz)
275 # push gem to Gemcutter
276 gem push $(pkggem)
277 # in case of gem downloads from RubyForge releases page
278 -rubyforge add_file \
279 $(rfproject) $(rfpackage) $(VERSION) $(pkggem)
280 else
281 gem install-gem: GIT-VERSION-FILE
282 $(MAKE) $@ VERSION=$(GIT_VERSION)
283 endif
285 .PHONY: .FORCE-GIT-VERSION-FILE doc $(T) $(slow_tests) manifest man
286 .PHONY: test-install