gemspec: fixup olddoc migration
[unicorn.git] / GNUmakefile
blobd7f0118d57ff3076ed27eda8ca3c16337ab19013
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 lib/unicorn_http.$(DLEXT): $(ext)/unicorn_http.$(DLEXT)
61 @mkdir -p lib
62 install -m644 $< $@
63 http: lib/unicorn_http.$(DLEXT)
65 test-install: $(test_prefix)/.stamp
66 $(test_prefix)/.stamp: $(inst_deps)
67 mkdir -p $(test_prefix)/.ccache
68 tar cf - $(inst_deps) GIT-VERSION-GEN | \
69 (cd $(test_prefix) && tar xf -)
70 $(MAKE) -C $(test_prefix) clean
71 $(MAKE) -C $(test_prefix) http shebang RUBY="$(RUBY)"
72 > $@
74 # this is only intended to be run within $(test_prefix)
75 shebang: $(bins)
76 $(MRI) -i -p -e '$$_.gsub!(%r{^#!.*$$},"#!$(ruby_bin)")' $^
78 t_log := $(T_log) $(T_n_log)
79 test: $(T) $(T_n)
80 @cat $(t_log) | $(MRI) test/aggregate.rb
81 @$(RM) $(t_log)
83 test-exec: $(wildcard test/exec/test_*.rb)
84 test-unit: $(wildcard test/unit/test_*.rb)
85 $(slow_tests): $(test_prefix)/.stamp
86 @$(MAKE) $(shell $(awk_slow) $@)
88 test-integration: $(test_prefix)/.stamp
89 $(MAKE) -C t
91 check: test test-integration
92 test-all: check
94 TEST_OPTS = -v
95 check_test = grep '0 failures, 0 errors' $(t) >/dev/null
96 ifndef V
97 quiet_pre = @echo '* $(arg)$(extra)';
98 quiet_post = >$(t) 2>&1 && $(check_test)
99 else
100 # we can't rely on -o pipefail outside of bash 3+,
101 # so we use a stamp file to indicate success and
102 # have rm fail if the stamp didn't get created
103 stamp = $@$(log_suffix).ok
104 quiet_pre = @echo $(RUBY) $(arg) $(TEST_OPTS); ! test -f $(stamp) && (
105 quiet_post = && > $(stamp) )2>&1 | tee $(t); \
106 rm $(stamp) 2>/dev/null && $(check_test)
107 endif
109 # not all systems have setsid(8), we need it because we spam signals
110 # stupidly in some tests...
111 rb_setsid := $(RUBY) -e 'Process.setsid' -e 'exec *ARGV'
113 # TRACER='strace -f -o $(t).strace -s 100000'
114 run_test = $(quiet_pre) \
115 $(rb_setsid) $(TRACER) $(RUBY) -w $(arg) $(TEST_OPTS) $(quiet_post) || \
116 (sed "s,^,$(extra): ," >&2 < $(t); exit 1)
118 %.n: arg = $(subst .n,,$(subst --, -n ,$@))
119 %.n: t = $(subst .n,$(log_suffix),$@)
120 %.n: export PATH := $(test_prefix)/bin:$(PATH)
121 %.n: export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(MYLIBS)
122 %.n: $(test_prefix)/.stamp
123 $(run_test)
125 $(T): arg = $@
126 $(T): t = $(subst .rb,$(log_suffix),$@)
127 $(T): export PATH := $(test_prefix)/bin:$(PATH)
128 $(T): export RUBYLIB := $(test_prefix):$(test_prefix)/lib:$(MYLIBS)
129 $(T): $(test_prefix)/.stamp
130 $(run_test)
132 install: $(bins) $(ext)/unicorn_http.c
133 $(prep_setup_rb)
134 $(RM) lib/unicorn_http.$(DLEXT)
135 $(RM) -r .install-tmp
136 mkdir .install-tmp
137 cp -p bin/* .install-tmp
138 $(RUBY) setup.rb all
139 $(RM) $^
140 mv .install-tmp/* bin/
141 $(RM) -r .install-tmp
142 $(prep_setup_rb)
144 setup_rb_files := .config InstalledFiles
145 prep_setup_rb := @-$(RM) $(setup_rb_files);$(MAKE) -C $(ext) clean
147 clean:
148 -$(MAKE) -C $(ext) clean
149 -$(MAKE) -C Documentation clean
150 $(RM) $(ext)/Makefile lib/unicorn_http.$(DLEXT)
151 $(RM) $(setup_rb_files) $(t_log)
152 $(RM) -r $(test_prefix) man
154 man html:
155 $(MAKE) -C Documentation install-$@
157 pkg_extra := GIT-VERSION-FILE lib/unicorn/version.rb LATEST NEWS \
158 $(ext)/unicorn_http.c $(man1_paths)
160 .manifest: $(ext)/unicorn_http.c man
161 (git ls-files && for i in $@ $(pkg_extra); do echo $$i; done) | \
162 LC_ALL=C sort > $@+
163 cmp $@+ $@ || mv $@+ $@
164 $(RM) $@+
166 PLACEHOLDERS = $(man1_rdoc)
167 doc: .document $(ext)/unicorn_http.c man html .olddoc.yml $(PLACEHOLDERS)
168 find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
169 $(RM) -r doc
170 $(OLDDOC) prepare
171 $(RDOC) -f oldweb
172 $(OLDDOC) merge
173 install -m644 COPYING doc/COPYING
174 install -m644 $(shell LC_ALL=C grep '^[A-Z]' .document) doc/
175 install -m644 $(man1_paths) doc/
176 tar cf - $$(git ls-files examples/) | (cd doc && tar xf -)
178 # publishes docs to http://unicorn.bogomips.org
179 publish_doc:
180 -git set-file-times
181 $(MAKE) doc
182 $(MAKE) doc_gz
183 chmod 644 $$(find doc -type f)
184 $(RSYNC) -av doc/ unicorn.bogomips.org:/srv/unicorn/
185 git ls-files | xargs touch
187 # Create gzip variants of the same timestamp as the original so nginx
188 # "gzip_static on" can serve the gzipped versions directly.
189 doc_gz: docs = $(shell find doc -type f ! -regex '^.*\.gz$$')
190 doc_gz:
191 for i in $(docs); do \
192 gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
194 ifneq ($(VERSION),)
195 rfpackage := unicorn
196 pkggem := pkg/$(rfpackage)-$(VERSION).gem
197 pkgtgz := pkg/$(rfpackage)-$(VERSION).tgz
199 # ensures we're actually on the tagged $(VERSION), only used for release
200 verify:
201 test x"$(shell umask)" = x0022
202 git rev-parse --verify refs/tags/v$(VERSION)^{}
203 git diff-index --quiet HEAD^0
204 test `git rev-parse --verify HEAD^0` = \
205 `git rev-parse --verify refs/tags/v$(VERSION)^{}`
207 fix-perms:
208 git ls-tree -r HEAD | awk '/^100644 / {print $$NF}' | xargs chmod 644
209 git ls-tree -r HEAD | awk '/^100755 / {print $$NF}' | xargs chmod 755
211 gem: $(pkggem)
213 install-gem: $(pkggem)
214 gem install $(CURDIR)/$<
216 $(pkggem): .manifest fix-perms
217 gem build $(rfpackage).gemspec
218 mkdir -p pkg
219 mv $(@F) $@
221 $(pkgtgz): distdir = $(basename $@)
222 $(pkgtgz): HEAD = v$(VERSION)
223 $(pkgtgz): .manifest fix-perms
224 @test -n "$(distdir)"
225 $(RM) -r $(distdir)
226 mkdir -p $(distdir)
227 tar cf - $$(cat .manifest) | (cd $(distdir) && tar xf -)
228 cd pkg && tar cf - $(basename $(@F)) | gzip -9 > $(@F)+
229 mv $@+ $@
231 package: $(pkgtgz) $(pkggem)
233 release: verify package
234 # push gem to Gemcutter
235 gem push $(pkggem)
236 else
237 gem install-gem: GIT-VERSION-FILE
238 $(MAKE) $@ VERSION=$(GIT_VERSION)
239 endif
241 $(PLACEHOLDERS):
242 echo olddoc_placeholder > $@
244 .PHONY: .FORCE-GIT-VERSION-FILE doc $(T) $(slow_tests) man
245 .PHONY: test-install