File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ pybuilddir.txt
71
71
pyconfig.h
72
72
python$
73
73
python.exe
74
- python-gdb.py
74
+ python * -gdb.py
75
75
tags
76
76
TAGS
77
77
.coverage
Original file line number Diff line number Diff line change @@ -47,13 +47,22 @@ matrix:
47
47
# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
48
48
before_script :
49
49
- |
50
+ set -e
50
51
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.rst$)|(^Doc)'
51
52
then
52
53
echo "Only docs were updated, stopping build process."
53
54
exit
54
55
fi
55
56
./configure --with-pydebug
56
57
make -j4
58
+ make -j4 regen-all
59
+ changes=`git status --porcelain`
60
+ if ! test -z "$changes"
61
+ then
62
+ echo "Generated files not up to date"
63
+ echo "$changes"
64
+ exit 1
65
+ fi
57
66
58
67
script :
59
68
# `-r -w` implicitly provided through `make buildbottest`.
You can’t perform that action at this time.
0 commit comments