chiark / gitweb /
Makefile: jstest can run from Makefile
[otter.git] / Makefile
1 # Copyright 2020-2021 Ian Jackson and contributors to Otter
2 # SPDX-License-Identifier: AGPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 # make -j8
6 # make -j8 release
7 # make -j8 shapelib
8
9 SHELL=/bin/bash
10 src=.
11
12 default: all check
13 all: debug
14 full-check: all check cargo-syntaxcheck-release shapelib doc-sphinx
15 full-check: for-deploy release
16 everything: debug doc release check bundled-sources
17
18 shapelib: templates/shapelib.html docs/html/index.html
19         @echo 'Shape library preview and docs can now be found here:'
20         @for f in $^; do echo '  file://$(PWD)/'$$f; done
21
22 MAKEFILE_DEP ?= Makefile
23 MAKEFILE_FIND_X ?=
24 # ^ set this to "x" to debug the $rsrcs rune
25
26 #---------- funky macros etc. ----------
27
28 cr = $(addprefix --,$(filter-out debug,$1))
29 rsrcs = $(shell $(foreach x,$(MAKEFILE_FIND_X),set -$x;)\
30     find -H $1 \( -name Cargo.toml -o -name Cargo.lock -o -name Cargo.lock.example -o -name \*.rs \) \! -path '*/build/*' )
31 stamp=@mkdir -p stamp; touch $@
32
33 BUNDLED_SOURCES_LIT = README.md LICENCE
34 BUNDLED_SOURCES_FILES = index.html $(BUNDLED_SOURCES_LIT)
35 BUNDLED_SOURCES_LINKS += $(BUNDLED_SOURCES_LIT) otter/
36 BUNDLED_SOURCES += $(BUNDLED_SOURCES_FILES)
37
38 #---------- programs and config variables ----------
39
40 CARGO ?= cargo
41 TARGET_DIR ?= target
42
43 USVG_OPTIONS = "--sans-serif-family=DejaVu Sans"
44
45 WASM_BINDGEN = $(TARGET_DIR)/debug/wasm-bindgen
46 WASM_BINDGEN_OPTIONS =                                          \
47         --remove-name-section --remove-producers-section        \
48         --typescript
49
50 BUNDLE_SOURCES ?= bundle-rust-sources
51
52 SPHINXBUILD   = sphinx-build
53
54 ifndef INKSCAPE_EXTENSIONS
55 INKSCAPE ?= inkscape
56 INKSCAPE_SDD_QUIETEN ?= 2>/dev/null
57 # inkscape 0.92.4: --extension-directory works, no --system-data-directory
58 # inkscape 1.0.2: --system-data-directory, no --extension-directory
59 INKSCAPE_EXTENSIONS := $(shell set -e; { sdd=$$( $(INKSCAPE) --system-data-directory $(INKSCAPE_SDD_QUIETEN) ) && echo "$$sdd/extensions"; } || $(INKSCAPE) --extension-directory )
60 endif
61 RECOLOUR_SVG ?= ./run-inkscape-extension $(INKSCAPE_EXTENSIONS)/color_replace.py
62
63 DEPLOY_ARCH=x86_64-unknown-linux-musl
64 DEPLOY_RELEASE=debug
65 DEPLOY_TARGET_DIR=$(TARGET_DIR)/$(addsuffix /,$(DEPLOY_ARCH))$(DEPLOY_RELEASE)
66 DEPLOYED_BRANCH=deployed
67 PUBLISHED_BRANCH=published
68
69 #---------- nailing-cargo ----------
70
71 ifneq (,$(wildcard ../Cargo.nail))
72
73 NAILING_CARGO = nailing-cargo
74 CARGO = $(NAILING_CARGO)
75 BUILD_SUBDIR ?= ../Build
76 TARGET_DIR = $(BUILD_SUBDIR)/$(notdir $(PWD))/target
77
78 NAILING_CARGO_JUST_RUN ?= $(NAILING_CARGO) --just-run -q ---
79 BUNDLE_SOURCES_CMD ?= $(NAILING_CARGO) --- $(BUNDLE_SOURCES)
80 USVG_CMD ?= $(NAILING_CARGO_JUST_RUN) $(USVG)
81 WASM_BINDGEN_CLI_CARGO_OPTS ?= --subcommand-props=!manifest-path
82
83 clean-nailing:
84         $(NAILING_CARGO_JUST_RUN) \
85  sh -c 'cd "$1"; find -mindepth 1 -maxdepth 1 -print0 | xargs -0r rm -rf --' \
86                 $(abspath $(BUILD_SUBDIR)/$(notdir $(PWD)))
87
88 else
89 clean-nailing:
90 endif # Cargo.nail
91
92 BUILD_SUBDIR ?= ../Build
93 BUNDLE_SOURCES_CMD ?= $(BUNDLE_SOURCES)
94 USVG_CMD ?= $(USVG)
95
96 WASM_PACKED=$(TARGET_DIR)/packed-wasm
97
98 #---------- local programs ----------
99
100 define lp
101 stamp/cargo.$2: $(call rsrcs, ! -name \*.rs)
102         $$(CARGO) build $(call cr,$3) -p $2
103         $$(stamp)
104 $1 := $(abspath $(TARGET_DIR)/$3/$4)
105 endef
106
107 $(eval $(call lp,BUNDLE_SOURCES,bundle-sources,debug,bundle-rust-sources))
108 $(eval $(call lp,USVG,usvg,release,usvg))
109
110 #---------- variables defining bits of source etc. ----------
111
112 PROGRAMS=daemon-otter otter
113
114 WASM_ASSETS := $(addprefix otter_wasm,.js _bg.wasm)
115 WASM_OUTPUTS := $(addprefix otter_wasm,.d.ts)
116
117 TS_SRCS= script
118 TS_SRC_FILES= \
119         $(addprefix templates/,$(addsuffix .ts,$(TS_SRCS))) \
120         webassembly-types/webassembly.d.ts \
121         $(WASM_PACKED)/otter_wasm.d.ts
122
123 LITFILES= LICENCE AGPLv3
124 TXTFILES= CC-BY-SA-3.0 CC-BY-SA-4.0
125
126 FILEASSETS = $(addprefix templates/, libre shapelib.html script.js \
127                         $(LITFILES) $(TXTFILES)) \
128                 $(wildcard templates/*.tera)
129
130 WASM := wasm32-unknown-unknown
131 # ^ todo: Is this still right after
132 #     Use correct ABI for wasm32 by default
133 #     https://github.com/rust-lang/rust/pull/79998
134 # ?  But maybe it doesn't matter since we're very conservative and
135 # only pass JsValue and a few strings across the WASM ABI.
136
137 #---------- toplevel aggregate targets ----------
138
139 check: stamp/cargo.debug-check at wdt
140         @echo 'Tests passed.'
141
142 full-check: stamp/cargo.release-check
143 full-check: stamp/cargo.release-miri stamp/cargo.debug-miri
144
145 full-check:
146         @echo 'Full tests passed.'
147
148 doc: cargo-doc doc-sphinx examples
149
150 debug release:: %: stamp/cargo.% assets libraries extra-%
151
152 cargo: cargo-debug cargo-wasm-release
153
154 cargo-debug cargo-release cargo-check cargo-doc \
155 cargo-wasm-debug cargo-wasm-release:: \
156 cargo-%: stamp/cargo.%
157
158 EXAMPLE_BUNDLES = test-bundle big-bundle
159 EXAMPLE_BUNDLE_FILES = $(foreach f, $(EXAMPLE_BUNDLES), examples/$f.zip)
160
161 examples: $(EXAMPLE_BUNDLE_FILES)
162 .PHONY: examples
163
164 cargo-wasm: cargo-wasm-release
165
166 wasm: stamp/wasm-bindgen
167
168 assets: js stamp/wasm-bindgen $(FILEASSETS)
169
170 js: templates/script.js
171
172 extra-debug:
173 extra-release: bundled-sources
174
175 cargo-syntaxcheck: cargo-syntaxcheck-host cargo-syntaxcheck-wasm
176 cargo-syntaxcheck-host:
177         $(CARGO) check --workspace
178 cargo-syntaxcheck-wasm:
179         $(CARGO) check --target $(WASM) -p otter-wasm --release
180 cargo-syntaxcheck-release:
181         $(CARGO) check --workspace --release
182
183 #---------- cargo ----------
184
185 DR=debug release
186 CARGOES=$(foreach t, wasm-,$(addprefix $t,check $(DR)))
187
188 $(addprefix stamp/cargo.,$(DR)):: \
189 stamp/cargo.%: $(call rsrcs,. ! -path './wasm/*')
190         $(CARGO) build --workspace $(call cr,$*) -p otter -p otter-daemon -p otter-cli
191         $(NAILING_CARGO_JUST_RUN) \
192         ln -sf otter $(abspath $(TARGET_DIR))/$*/otter-ssh-proxy
193         $(stamp)
194
195 $(TARGET_DIR)/debug/%: $(call rsrcs, ! -path './wasm/*')
196         $(CARGO) build --workspace -p otter-cli
197
198 stamp/cargo.wasm-bindgen: $(call rsrcs, ! -name \*.rs)
199         $(CARGO) $(WASM_BINDGEN_CLI_CARGO_OPTS) build --target-dir=target \
200                 --manifest-path=$(abspath wasm/Cargo.toml) -p wasm-bindgen-cli
201         $(stamp)
202
203 stamp/cargo.%-check: $(call rsrcs,.)
204         $(CARGO) test --workspace $(call cr,$*)
205         $(stamp)
206
207 stamp/cargo.%-miri: $(call rsrcs,.)
208         $(CARGO) miri test --workspace $(call cr,$*)
209         $(stamp)
210
211 stamp/cargo-at.debug: $(call rsrcs,.)
212         $(CARGO) build --workspace $(call cr,$*) -p otter-api-tests
213         $(stamp)
214
215 stamp/cargo-wdt.debug: $(call rsrcs,.)
216         $(CARGO) build --workspace $(call cr,$*) -p otter-webdriver-tests
217         $(stamp)
218
219 stamp/cargo.doc: $(call rsrcs,.)
220         set -o pipefail -e; \
221         $(CARGO) doc $(CARGO_DOC_OPTS) --workspace 2>&1 |egrep -vf .cargo-doc-suppress-errors
222         $(stamp)
223
224 $(addprefix stamp/cargo.wasm-,$(DR)):: \
225 stamp/cargo.wasm-%: $(call rsrcs, base wasm Cargo.*)
226         $(CARGO) build --target $(WASM) -p otter-wasm $(call cr,$*)
227         $(stamp)
228
229 stamp/cargo.deploy-build: $(call rsrcs,.)
230         $(CARGO) build --target $(DEPLOY_ARCH) $(call cr,$(DEPLOY_RELEASE)) -p otter -p otter-cli -p otter-daemon
231         $(NAILING_CARGO_JUST_RUN) \
232         ln -sf otter $(abspath $(TARGET_DIR)/$(DEPLOY_ARCH))/$(DEPLOY_RELEASE)/otter-ssh-proxy
233         $(stamp)
234
235 #---------- sphnix ----------
236
237 doc-sphinx:     docs/html/index.html \
238         $(foreach f, $(EXAMPLE_BUNDLES), docs/html/examples/$f.zip) \
239         $(addprefix docs/html/examples/, $(notdir $(wildcard specs/*.toml)))
240         @echo 'Documentation can now be found here:'
241         @echo '  file://$(PWD)/$<'
242
243 docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst docs/*.png)
244         $(SPHINXBUILD) -M html docs docs $(SPHINXOPTS)
245
246 docs/html/examples/%.zip: examples/%.zip
247         mkdir -p docs/html/examples
248         rm -f $@ && ln $< $@
249
250 docs/html/examples/%.toml: specs/%.toml
251         mkdir -p docs/html/examples
252         rm -f $@ && ln $< $@
253
254 #---------- jstest ----------
255
256 stamp/jstest: jstest/run jstest/wasmtest.nodejs stamp/wasm-bindgen-jstest
257         $(NAILING_CARGO_JUST_RUN) $(abspath $(filter-out stamp/%,$^))
258         $(stamp)
259
260 #---------- wasm ----------
261
262 $(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
263 stamp/wasm-bindgen: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
264         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
265                 $(WASM_BINDGEN_OPTIONS) --no-modules \
266                 --out-dir target/packed-wasm \
267                 target/$(WASM)/release/otter_wasm.wasm
268         $(stamp)
269
270 stamp/wasm-bindgen-jstest: stamp/cargo.wasm-bindgen stamp/cargo.wasm-release
271         $(NAILING_CARGO_JUST_RUN) $(abspath $(WASM_BINDGEN)) \
272                 $(WASM_BINDGEN_OPTIONS) --nodejs \
273                 --out-dir target/jstest \
274                 target/$(WASM)/release/otter_wasm.wasm
275         $(stamp)
276
277 #---------- bundle-sources ----------
278
279 BUNDLED_SOURCES_DIRS += otter
280
281 bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS))
282
283 TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources
284
285 $(TARGET_BUNDLED):
286         $(NAILING_CARGO_JUST_RUN) mkdir -p $(abspath $@)
287
288 $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \
289 bundled-sources/%: stamp/cargo.bundle-sources $(TARGET_BUNDLED)
290         set -e; d=$(abspath $(TARGET_BUNDLED)); \
291         $(if $(filter-out otter,$*), cd ../$*;) \
292         $(BUNDLE_SOURCES_CMD) --output $$d/$*
293
294 bundled-sources:: $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_FILES))
295
296 $(addprefix $(TARGET_BUNDLED)/, $(BUNDLED_SOURCES_LIT)): \
297 $(TARGET_BUNDLED)/%: % $(TARGET_BUNDLED)
298         $(NAILING_CARGO_JUST_RUN) cp $(abspath $(src))/$< $(abspath $@)
299
300 $(TARGET_BUNDLED)/index.html: bundled-sources-make-index \
301                 $(MAKEFILE_DEP) $(TARGET_BUNDLED)
302         $(NAILING_CARGO_JUST_RUN) sh -ec '                      \
303                 cd $(abspath $(src)); mkdir -p $(dir $@);       \
304                 ./$< >$@.tmp $(BUNDLED_SOURCES_LINKS);          \
305                 mv -f $@.tmp $@;                                \
306         '
307
308 bundled-sources::
309         @echo Bundled sources.
310
311 #---------- svg processing ----------
312
313 LIBRARIES ?= $(basename $(wildcard library/*.toml))
314 USVG_DEP = stamp/cargo.usvg
315
316 include $(addsuffix /files.make, $(LIBRARIES))
317
318 USVG_PROCESSOR = usvg-processor
319 LIBRARY_PROCESS_SVG = ./$(USVG_PROCESSOR) $@ $(wordlist 1,2,$^) '$(USVG_CMD) $(USVG_OPTIONS)'
320 $(LIBRARY_FILES): $(USVG_PROCESSOR) $(USVG_DEP) $(MAKEFILE_DEP)
321
322 # actual command for each of $(LIBRARY_FILES) is in one of the files.make
323
324 library/%/files.make: media-scraper library/%.toml
325         ./$< --offline library/$*.toml
326
327 #---------- typescript ----------
328
329 templates/%.js: tsc-wrap tsconfig.json
330         ./tsc-wrap $@ tsconfig.json $(filter %.ts,$^)
331
332 templates/script.js: $(TS_SRC_FILES) stamp/wasm-bindgen
333
334 #---------- other templates ----------
335
336 $(addprefix templates/,$(LITFILES)): templates/%: %
337         cp $< $@.new && mv -f $@.new $@
338
339 $(addprefix templates/,$(TXTFILES)): templates/%: %.txt
340         cp $< $@.new && mv -f $@.new $@
341
342 libraries: $(LIBRARY_FILES)
343
344 templates/shapelib.html: $(TARGET_DIR)/debug/otterlib $(LIBRARY_FILES)
345         $(NAILING_CARGO_JUST_RUN) $(abspath $<) \
346         --libs '$(addprefix $(PWD)/, $(addsuffix .toml, $(LIBRARIES)))' \
347                 preview >$@.tmp && mv -f $@.tmp $@
348
349 #---------- examples ----------
350
351 EXAMPLE_BUNDLE_INPUT_DEPS := $(shell                                    \
352         cd examples/test-bundle/ && find \! \( -name '*~' -o -name '.*' \) \
353 )
354
355 examples/%.zip: $(MAKEFILE_DEP)
356         set -e; rm -f $@.tmp; cd examples/$*/; \
357         zip $(ZIPFLAGS) -DX ../$(notdir $@).tmp $(ZIP_INPUTS)
358         mv -f $@.tmp $@
359
360 examples/test-bundle.zip: ZIP_INPUTS=$(EXAMPLE_BUNDLE_INPUT_DEPS)
361 examples/test-bundle.zip: \
362  $(addprefix examples/test-bundle/, $(EXAMPLE_BUNDLE_INPUT_DEPS))
363
364 examples/big-bundle.zip: examples/big-bundle/otter.toml
365 examples/big-bundle.zip: ZIPFLAGS+= -0 -r -q
366 examples/big-bundle.zip: ZIP_INPUTS=.
367 examples/big-bundle/otter.toml: $(LIBRARY_FILES) $(MAKEFILE_DEP)
368         rm -rf examples/big-bundle
369         mkdir examples/big-bundle examples/big-bundle/library
370         @set -e; echo 'MKDIR for $@'; \
371         for l in $(LIBRARIES); do \
372                 mkdir examples/big-bundle/$$l; \
373                 perl -p \
374  -e 'BEGIN { print "# -- AUTOGENERATED FROM COPY IN OTTER SOURCE --\n" }' \
375  -e 'if (m/^\[scraper]/..0) { unless (m/^\[(?!scraper)/..0) { s/^/\#/ } }' \
376  -e 's/(?<=\s)\w\S*(?=\s)/-/ if m/^files = """/..m/^"""/;' \
377                         <$$l.toml >examples/big-bundle/$$l.toml; done
378         @set -e; echo 'LN for $@'; \
379         for e in $(LIBRARY_FILE_INPUTS); do \
380                 ln $${e#*:} examples/big-bundle/$${e%%.usvg:*}.svg; done;
381         @set -e; echo 'MV for $@'; \
382         cd examples/big-bundle/library/; for x in '' .toml; do \
383                 mv wikimedia$$x duped-example$$x; done
384         @set -e; mkdir examples/big-bundle/specs/; \
385         perl -pe <specs/demo.game.toml \
386                 >examples/big-bundle/specs/Modded-spec.game.toml \
387                 's/chess-b-/chess-purple-/; s/chess-w-/chess-yellow-/'
388         @set -e; echo 'ECHO for $@'; \
389         echo 'title = "Autogenerated test bundle - do not distribute"' \
390                 >$@.tmp
391         mv -f $@.tmp $@
392
393 #---------- webdriver tests (wdt) ----------
394
395 AT_TESTS := $(basename $(notdir $(wildcard apitest/at-*.rs)))
396 WDT_TESTS := $(basename $(notdir $(wildcard wdriver/wdt-*.rs)))
397
398 WDT_LANDSCAPE_TESTS = wdt-altergame
399
400 at:     $(foreach f, $(AT_TESTS), stamp/$f.check)
401
402 wdt:    $(foreach f, $(WDT_TESTS), stamp/$f.check) \
403         $(foreach f, $(WDT_LANDSCAPE_TESTS), stamp/$f.lcheck) \
404
405 RUNTEST_DEPS =  apitest/run1 stamp/cargo.debug $(FILEASSETS) \
406                 $(wildcard specs/*.toml) examples/test-bundle.zip \
407                 $(wildcard libraries/*.toml) $(LIBRARY_FILES)
408
409 AT_DEPS =       $(filter-out templates/script.js, $(RUNTEST_DEPS)) \
410                 examples/big-bundle.zip \
411                 stamp/cargo-at.debug
412
413 WDT_DEPS =      $(RUNTEST_DEPS) \
414                 stamp/cargo-wdt.debug
415
416 AT_WDT_RUN = $(NAILING_CARGO_JUST_RUN) $(abspath $<)
417
418 AT_RUN = $(AT_WDT_RUN) apitest --test=$(basename $(notdir $@))
419 WDT_RUN = $(AT_WDT_RUN) wdriver --test=$(basename $(notdir $@))
420
421 for-at:                 $(AT_DEPS)
422 stamp/at-%.check:       $(AT_DEPS)
423         $(AT_RUN)
424         $(stamp)
425
426 for-wdt:                $(WDT_DEPS)
427 stamp/wdt-%.check:      $(WDT_DEPS)
428         $(WDT_RUN)
429         $(stamp)
430
431 stamp/wdt-%.lcheck:     $(WDT_DEPS)
432         $(WDT_RUN) --as-if=lwdt-$* --layout=Landscape
433         $(stamp)
434
435 #---------- docs publication ----------
436
437 PUBLISH_USER=ianmdlvl@login.chiark.greenend.org.uk
438 PUBLISH_DOC_SPHINX=$(PUBLISH_USER):public-html/otter/docs
439
440 publish: doc-sphinx
441         rsync -r --delete-delay docs/html/. $(PUBLISH_DOC_SPHINX)/.
442         git branch -f $(PUBLISHED_BRANCH)
443
444 #---------- deployment ----------
445
446 DEPLOY_USER=ian@login.chiark.greenend.org.uk
447 DEPLOY_BASE=$(DEPLOY_USER):/volatile/Otter
448 DEPLOY_FINISH=/home/Otter/etc/deploy-finish
449
450 for-deploy: stamp/cargo.deploy-build
451 deploy: for-deploy bundled-sources assets libraries
452         rsync -zvl --progress $(addprefix $(DEPLOY_TARGET_DIR)/,$(PROGRAMS) otter-ssh-proxy) $(DEPLOY_BASE)/bin/
453         rsync -zv --progress $(TARGET_DIR)/release/usvg $(DEPLOY_BASE)/libexec/
454         rsync -rv --progress $(TARGET_DIR)/bundled-sources/. $(DEPLOY_BASE)/bundled-sources
455         rsync -r README.md $(DEPLOY_BASE)/.
456         rsync -r --delete --exclude=\*~ library specs $(DEPLOY_BASE)/.
457         rsync -r $(FILEASSETS) $(addprefix $(WASM_PACKED)/, $(WASM_ASSETS)) \
458                 $(DEPLOY_BASE)/assets/
459         rsync -r nwtemplates/*.tera $(DEPLOY_BASE)/nwtemplates/
460         ssh -o BatchMode=true $(DEPLOY_USER) $(DEPLOY_FINISH)
461         git branch -f $(DEPLOYED_BRANCH)
462         -git push origin main
463         -git push chiark main
464
465 #$(DEPLOY_BASE)/bundled-sources
466
467 #---------- clean ----------
468
469 clean-for-retest:
470         rm -f templates/script.js library/*/*.usvg stamp/*
471         rm -rf $(LIBRARY_CLEAN)
472         rm -rf examples/big-bundle examples/big-bundle.zip
473         rm -f examples/test-bundle.zip
474         find * \( -name '*~' -o -name '*.tmp' \) -print0 | xargs -0r rm --
475
476 clean: clean-nailing clean-for-retest
477         rm -rf target
478         $(NAILING_CARGO_JUST_RUN) rm -rf target