diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-04-25 01:27:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-25 01:27:18 (GMT) |
commit | 38e8936eed3d50b39629d4719fd836966c1517f2 (patch) | |
tree | 525f0bb470ebee936db71772f2a0f419648851d9 /.travis.yml | |
parent | b0ca398cabd2d2ea2d66fa50b08e297a60388c75 (diff) | |
download | cpython-38e8936eed3d50b39629d4719fd836966c1517f2.zip cpython-38e8936eed3d50b39629d4719fd836966c1517f2.tar.gz cpython-38e8936eed3d50b39629d4719fd836966c1517f2.tar.bz2 |
travis: Use -O3 option (GH-5599)
We don't use debugger on Travis..
(cherry picked from commit 8ff53564730f7ba503f5ad94418c309c48e8516d)
Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 7d92c2e..2ced4d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,11 @@ cache: - pip - ccache +env: + global: + # Use -O3 because we don't use debugger on Travis-CI + - CFLAGS="-O3" + branches: only: - master |