fix test dependencies
This commit is contained in:
parent
c890ddc007
commit
c12326202c
2
Makefile
2
Makefile
@ -46,7 +46,7 @@ mj-msc-full.pdf: mj-msc.pdf version.tex $(ARCHIVABLES)
|
|||||||
done
|
done
|
||||||
mv .tmp-$@ $@
|
mv .tmp-$@ $@
|
||||||
|
|
||||||
test-figures.pdf: layer2img.py tests.sql
|
test-figures.pdf: layer2img.py .faux_test
|
||||||
python ./layer2img.py --group1-table=figures --group1-arrows=yes --outfile=$@
|
python ./layer2img.py --group1-table=figures --group1-arrows=yes --outfile=$@
|
||||||
|
|
||||||
.faux_test: tests.sql wm.sql .faux.db
|
.faux_test: tests.sql wm.sql .faux.db
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
dir=$(mktemp -d)
|
dir=$(mktemp -d)
|
||||||
src=${1:-mj-msc.pdf}
|
src=${1:-mj-msc-full.pdf}
|
||||||
dst=${2:-mj-msc-full.pdf}
|
dst=${2:-mj-msc.pdf}
|
||||||
echo "Extracting $src to $dir/" && pdfdetach -saveall -o "$dir" "$src"
|
echo "Extracting $src to $dir/" && pdfdetach -saveall -o "$dir" "$src"
|
||||||
|
chmod a+x "$dir/db"
|
||||||
echo "Generating $dir/$dst ..."
|
echo "Generating $dir/$dst ..."
|
||||||
make -j $(nproc) -C "$dir" "$dst" &> "$dir/make.log" || {
|
make -j $(nproc) -C "$dir" "$dst" &> "$dir/make.log" || {
|
||||||
echo "Generation failed. Log extract:" && tail -20 "$dir/make.log"
|
echo "Generation failed. Log extract:" && tail -20 "$dir/make.log"
|
||||||
|
Loading…
Reference in New Issue
Block a user