FAQ: reorder bit on Rack 1.1.x and Rails 2.3.x
[unicorn.git] / GNUmakefile
blob3f9c441319f452f2842e05959a988da0bf860c2d
1 # use GNU Make to run tests in parallel, and without depending on RubyGems
2 all:: test
4 RLFLAGS = -G2
6 MRI = ruby
7 RUBY = ruby
8 RAKE = rake
9 RAGEL = ragel
10 RSYNC = rsync
11 OLDDOC = olddoc
12 RDOC = rdoc
14 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
15 @./GIT-VERSION-GEN
16 -include GIT-VERSION-FILE
17 -include local.mk
18 ruby_bin := $(shell which $(RUBY))
19 ifeq ($(DLEXT),) # "so" for Linux
20 DLEXT := $(shell $(RUBY) -rrbconfig -e 'puts RbConfig::CONFIG["DLEXT"]')
21 endif
22 ifeq ($(RUBY_VERSION),)
23 RUBY_VERSION := $(shell $(RUBY) -e 'puts RUBY_VERSION')
24 endif
26 RUBY_ENGINE := $(shell $(RUBY) -e 'puts((RUBY_ENGINE rescue "ruby"))')
28 MYLIBS = $(RUBYLIB)
30 # dunno how to implement this as concisely in Ruby, and hell, I love awk
31 awk_slow := awk '/def test_/{print FILENAME"--"$$2".n"}' 2>/dev/null
33 slow_tests := test/unit/test_server.rb test/exec/test_exec.rb \
34 test/unit/test_signals.rb test/unit/test_upload.rb
35 log_suffix = .$(RUBY_ENGINE).$(RUBY_VERSION).log
36 T := $(filter-out $(slow_tests), $(wildcard test/*/test*.rb))
37 T_n := $(shell $(awk_slow) $(slow_tests))
38 T_log := $(subst .rb,$(log_suffix),$(T))
39 T_n_log := $(subst .n,$(log_suffix),$(T_n))
40 test_prefix = $(CURDIR)/test/$(RUBY_ENGINE)-$(RUBY_VERSION)
42 ext := ext/unicorn_http
43 c_files := $(ext)/unicorn_http.c $(ext)/httpdate.c $(wildcard $(ext)/*.h)
44 rl_files := $(wildcard $(ext)/*.rl)
45 base_bins := unicorn unicorn_rails
46 bins := $(addprefix bin/, $(base_bins))
47 man1_rdoc := $(addsuffix _1, $(base_bins))
48 man1_bins := $(addsuffix .1, $(base_bins))
49 man1_paths := $(addprefix man/man1/, $(man1_bins))
50 rb_files := $(bins) $(shell find lib ext -type f -name '*.rb')
51 inst_deps := $(c_files) $(rb_files) GNUmakefile test/test_helper.rb
53 ragel: $(ext)/unicorn_http.c
54 $(ext)/unicorn_http.c: $(rl_files)
55 cd $(@D) && $(RAGEL) unicorn_http.rl -C $(RLFLAGS) -o $(@F)
56 $(ext)/Makefile: $(ext)/extconf.rb $(c_files)
57 cd $(@D) && $(RUBY) extconf.rb
58 $(ext)/unicorn_http.$(DLEXT): $(ext)/Makefile
59 $(MAKE) -C $(@D)
60 http: $(ext)/unicorn_http.$(DLEXT)
62 # only used for tests
63 http-install: $(ext)/unicorn_http.$(DLEXT)
64 install -m644 $< lib/
66 test-install: $(test_prefix)/.stamp
67 $(test_prefix)/.stamp: $(inst_deps)
68 mkdir -p $(test_prefix)/.ccache
69 tar cf - $(inst_deps) GIT-VERSION-GEN | \
70 (cd $(test_prefix) && tar xf -)
71 $(MAKE) -C $(test_prefix) clean
72 $(MAKE) -C $(test_prefix) http-install shebang RUBY="$(RUBY)"
73 > $@
75 # this is only intended to be run within $(test_prefix)
76 shebang: $(bins)
77 $(MRI) -i -p -e '$$_.gsub!(%r{^#!.*$$},"#!$(ruby_bin)")' $^
79 t_log := $(T_log) $(T_n_log)
80 test: $(T) $(T_n)
81 @cat $(t_log) | $(MRI) test/aggregate.rb
82 @$(RM) $(t_log)
84 test-exec: $(wildcard test/exec/test_*.rb)
85 test-unit: $(wildcard test/unit/test_*.rb)
86 $(slow_tests): $(test_prefix)/.stamp
87 @$(MAKE) $(shell $(awk_slow) $@)
89 # ensure we can require just the HTTP parser without the rest of unicorn
90 test-require: $(ext)/unicorn_http.$(DLEXT)
91 $(RUBY) --disable-gems -I$(ext) -runicorn_http -e Unicorn
93 test-integration: $(test_prefix)/.stamp
94 $(MAKE) -C t
96 check: test-require test test-integration
97 test-all: check
99 TEST_OPTS = -v
100 check_test = grep '0 failures, 0 errors' $(t) >/dev/null
101 ifndef V
102 quiet_pre = @echo '* $(arg)$(extra)';
103 quiet_post = >$(t) 2>&1 && $(check_test)
104 else
105 # we can't rely on -o pipefail outside of bash 3+,
106 # so we use a stamp file to indicate success and
107 # have rm fail if the stamp didn't get created
108 stamp = $@$(log_suffix).ok
109 quiet_pre = @echo $(RUBY) $(arg) $(TEST_OPTS); ! test -f $(stamp) && (
110 quiet_post = && > $(stamp) )2>&1 | tee $(t); \
111 rm $(stamp) 2>/dev/null && $(check_test)
112 endif
114 # not all systems have setsid(8), we need it because we spam signals
115 # stupidly in some tests...
116 rb_setsid := $(RUBY) -e 'Process.setsid' -e 'exec *ARGV'
118 # TRACER='strace -f -o $(t).strace -s 100000'
119 run_test = $(quiet_pre) \
120 $(rb_setsid) $(TRACER) $(RUBY) -w $(arg) $(TEST_OPTS) $(quiet_post) || \
121 (sed "s,^,$(extra): ," >&2 < $(t); exit 1)
123 %.n: arg = $(subst .n,,$(subst --, -n ,$@))
124 %.n: t = $(subst .n,$(log_suffix),$@)
125 %.n: export PATH := $(test_prefix)/bin:$(PATH)
126 %.n: export RUBYLIB := $(test_prefix)/lib:$(MYLIBS)
127 %.n: $(test_prefix)/.stamp
128 $(run_test)
130 $(T): arg = $@
131 $(T): t = $(subst .rb,$(log_suffix),$@)
132 $(T): export PATH := $(test_prefix)/bin:$(PATH)
133 $(T): export RUBYLIB := $(test_prefix)/lib:$(MYLIBS)
134 $(T): $(test_prefix)/.stamp
135 $(run_test)
137 install: $(bins) $(ext)/unicorn_http.c
138 $(prep_setup_rb)
139 $(RM) -r .install-tmp
140 mkdir .install-tmp
141 cp -p bin/* .install-tmp
142 $(RUBY) setup.rb all
143 $(RM) $^
144 mv .install-tmp/* bin/
145 $(RM) -r .install-tmp
146 $(prep_setup_rb)
148 setup_rb_files := .config InstalledFiles
149 prep_setup_rb := @-$(RM) $(setup_rb_files);$(MAKE) -C $(ext) clean
151 clean:
152 -$(MAKE) -C $(ext) clean
153 -$(MAKE) -C Documentation clean
154 $(RM) $(ext)/Makefile
155 $(RM) $(setup_rb_files) $(t_log)
156 $(RM) -r $(test_prefix) man
158 man html:
159 $(MAKE) -C Documentation install-$@
161 pkg_extra := GIT-VERSION-FILE lib/unicorn/version.rb LATEST NEWS \
162 $(ext)/unicorn_http.c $(man1_paths)
164 NEWS:
165 $(OLDDOC) prepare
167 .manifest: $(ext)/unicorn_http.c man NEWS
168 (git ls-files && for i in $@ $(pkg_extra); do echo $$i; done) | \
169 LC_ALL=C sort > $@+
170 cmp $@+ $@ || mv $@+ $@
171 $(RM) $@+
173 PLACEHOLDERS = $(man1_rdoc)
174 doc: .document $(ext)/unicorn_http.c man html .olddoc.yml $(PLACEHOLDERS)
175 find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
176 $(RM) -r doc
177 $(OLDDOC) prepare
178 $(RDOC) -f oldweb
179 $(OLDDOC) merge
180 install -m644 COPYING doc/COPYING
181 install -m644 NEWS.atom.xml doc/NEWS.atom.xml
182 install -m644 $(shell LC_ALL=C grep '^[A-Z]' .document) doc/
183 install -m644 $(man1_paths) doc/
184 tar cf - $$(git ls-files examples/) | (cd doc && tar xf -)
186 # publishes docs to http://unicorn.bogomips.org
187 publish_doc:
188 -git set-file-times
189 $(MAKE) doc
190 $(MAKE) doc_gz
191 chmod 644 $$(find doc -type f)
192 $(RSYNC) -av doc/ unicorn.bogomips.org:/srv/unicorn/
193 git ls-files | xargs touch
195 # Create gzip variants of the same timestamp as the original so nginx
196 # "gzip_static on" can serve the gzipped versions directly.
197 doc_gz: docs = $(shell find doc -type f ! -regex '^.*\.gz$$')
198 doc_gz:
199 for i in $(docs); do \
200 gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
202 ifneq ($(VERSION),)
203 rfpackage := unicorn
204 pkggem := pkg/$(rfpackage)-$(VERSION).gem
205 pkgtgz := pkg/$(rfpackage)-$(VERSION).tgz
207 # ensures we're actually on the tagged $(VERSION), only used for release
208 verify:
209 test x"$(shell umask)" = x0022
210 git rev-parse --verify refs/tags/v$(VERSION)^{}
211 git diff-index --quiet HEAD^0
212 test `git rev-parse --verify HEAD^0` = \
213 `git rev-parse --verify refs/tags/v$(VERSION)^{}`
215 fix-perms:
216 git ls-tree -r HEAD | awk '/^100644 / {print $$NF}' | xargs chmod 644
217 git ls-tree -r HEAD | awk '/^100755 / {print $$NF}' | xargs chmod 755
219 gem: $(pkggem)
221 install-gem: $(pkggem)
222 gem install $(CURDIR)/$<
224 $(pkggem): .manifest fix-perms
225 gem build $(rfpackage).gemspec
226 mkdir -p pkg
227 mv $(@F) $@
229 $(pkgtgz): distdir = $(basename $@)
230 $(pkgtgz): HEAD = v$(VERSION)
231 $(pkgtgz): .manifest fix-perms
232 @test -n "$(distdir)"
233 $(RM) -r $(distdir)
234 mkdir -p $(distdir)
235 tar cf - $$(cat .manifest) | (cd $(distdir) && tar xf -)
236 cd pkg && tar cf - $(basename $(@F)) | gzip -9 > $(@F)+
237 mv $@+ $@
239 package: $(pkgtgz) $(pkggem)
241 release: verify package
242 # push gem to Gemcutter
243 gem push $(pkggem)
244 else
245 gem install-gem: GIT-VERSION-FILE
246 $(MAKE) $@ VERSION=$(GIT_VERSION)
247 endif
249 $(PLACEHOLDERS):
250 echo olddoc_placeholder > $@
252 .PHONY: .FORCE-GIT-VERSION-FILE doc $(T) $(slow_tests) man
253 .PHONY: test-install