aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-06-28 02:05:37 +0900
committerGitHub <noreply@github.com>2019-06-28 02:05:37 +0900
commit21cfae107e410bf4b0ab3c142ca4449bc33290f5 (patch)
tree4bdb90b38f20e0e80cb2a07624538ddd2405ce96 /.travis.yml
parentcloses bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH... (diff)
downloadcpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.tar.gz
cpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.tar.bz2
cpython-21cfae107e410bf4b0ab3c142ca4449bc33290f5.zip
bpo-30345: travis: use -Og with --with-pydebug (GH-14423)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3e2cbb6fb0f..cff401f5bcb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -166,7 +166,8 @@ install:
# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
before_script:
- - ./configure --with-pydebug
+ # -Og is much faster than -O0
+ - CFLAGS="${CFLAGS} -Og" ./configure --with-pydebug
- make -j4 regen-all
- changes=`git status --porcelain`
- |