Update Travis configuration

This commit is contained in:
micbou 2016-04-17 03:10:57 +02:00
parent e0f2da0885
commit dfd62c4c44
4 changed files with 7 additions and 19 deletions

View File

@ -24,19 +24,11 @@ addons:
# The Travis apt source whitelist can be found here: # The Travis apt source whitelist can be found here:
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json # https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
- ubuntu-toolchain-r-test # for new libstdc++ - ubuntu-toolchain-r-test # for new libstdc++
- deadsnakes # for various versions of python - george-edison55-precise-backports # for a more recent version of cmake (3.2.3)
- kalakris-cmake # for a more recent version of cmake (needed for ninja-build)
packages: packages:
- cmake-data
- cmake - cmake
- ninja-build - ninja-build
# The confusing part is that on Travis Linux with YCMD_PYTHON_VERSION=3.3,
# we build the C++ parts against the below system python3.3, but run
# against the pyenv python3.3. This is because stupid cmake 2.8.11 has a
# bug preventing it from finding the pyenv pythons (ostensibly; I haven't
# checked, but online reports say the issue is gone with cmake 3.4).
# Everything still works though, it's just weird.
- python3.3
- python3.3-dev
# Everything below is a Python build dep (though it depends on Python # Everything below is a Python build dep (though it depends on Python
# version). We need them because pyenv builds Python. # version). We need them because pyenv builds Python.
- libssl-dev - libssl-dev

View File

@ -16,13 +16,6 @@ if %arch% == 32 (
set PATH=%python_path%;%python_path%\Scripts;%PATH% set PATH=%python_path%;%python_path%\Scripts;%PATH%
python --version python --version
:: When using Python 3 on AppVeyor, CMake will always pick the 64 bit
:: libraries. We specifically tell CMake the right path to the libraries
:: according to the architecture.
if %python% == 35 (
set EXTRA_CMAKE_ARGS="-DPYTHON_LIBRARY=%python_path%\libs\python%python%.lib"
)
appveyor DownloadFile https://bootstrap.pypa.io/get-pip.py appveyor DownloadFile https://bootstrap.pypa.io/get-pip.py
python get-pip.py python get-pip.py
pip install -r python\test_requirements.txt pip install -r python\test_requirements.txt

View File

@ -1,2 +1,5 @@
# Linux installation # Linux-specific installation
# In order to work with ycmd, python *must* be built as a shared library. This
# is set via the PYTHON_CONFIGURE_OPTS option.
export PYTHON_CONFIGURE_OPTS="--enable-shared"

2
third_party/ycmd vendored

@ -1 +1 @@
Subproject commit ff72c8567201a9f9584357b2317fa80a6704b656 Subproject commit b74add9c32f6edd71e165a7151fac12cf8a9a32c