File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
env :
6
- - BUILD_TYPE=latexmk # build using latexmk
6
+ - BUILD_TYPE=latexmk # build using latexmk, also check for overfull hboxes
7
7
- BUILD_TYPE=make # build using Makefile
8
- - BUILD_TYPE=manual # build manually
9
- - BUILD_TYPE=complete # build manually and regenerate figures, grammer, and cross-references
8
+ - BUILD_TYPE=complete # build manually and regenerate figures, grammar, and cross-references
10
9
- BUILD_TYPE=check-whitespace # check for whitespace at the ends of lines
11
10
12
11
script :
13
12
# Build std.pdf
14
13
- pushd source
15
14
- if [ "$BUILD_TYPE" = "latexmk" ]; then
16
15
latexmk -pdf std;
16
+ ! grep -Fe "Overfull \\hbox" std.log;
17
17
fi
18
18
- if [ "$BUILD_TYPE" = "make" ]; then
19
19
make -j2;
@@ -22,8 +22,6 @@ script:
22
22
for FIGURE in *.dot; do
23
23
dot -o$(basename $FIGURE .dot).pdf -Tpdf $FIGURE;
24
24
done;
25
- fi
26
- - if [ "$BUILD_TYPE" = "manual" -o "$BUILD_TYPE" = "complete" ]; then
27
25
pdflatex std;
28
26
pdflatex std;
29
27
pdflatex std;
You can’t perform that action at this time.
0 commit comments