We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe8ac6 commit 0809d07Copy full SHA for 0809d07
.travis.yml
@@ -47,13 +47,22 @@ matrix:
47
# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
48
before_script:
49
- |
50
+ set -e
51
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.rst$)|(^Doc)'
52
then
53
echo "Only docs were updated, stopping build process."
54
exit
55
fi
56
./configure --with-pydebug
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
66
67
script:
68
# `-r -w` implicitly provided through `make buildbottest`.
0 commit comments