diff options
author | Mats Wichmann <mats@linux.com> | 2019-03-04 18:41:04 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-03-04 18:41:04 (GMT) |
commit | 0c02062ec5ca6f972838637e2ffb9a0132d5e1af (patch) | |
tree | f971f465bbb858ce73c4e8a89fd8b694714a433f | |
parent | 9e857aa8197bc12b7309527e10b2a31bd9601f59 (diff) | |
download | SCons-0c02062ec5ca6f972838637e2ffb9a0132d5e1af.zip SCons-0c02062ec5ca6f972838637e2ffb9a0132d5e1af.tar.gz SCons-0c02062ec5ca6f972838637e2ffb9a0132d5e1af.tar.bz2 |
[PYPY] further adjust travis-ci pypy3 build
Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r-- | .travis.yml | 5 | ||||
-rwxr-xr-x | .travis/install.sh | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 2609069..967e0d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,10 +63,10 @@ jobs: - &slow_test_job stage: Test - script: python runtest.py -a -j 3 -t || if [[ $? == 2 ]]; then true; else false; fi + script: python runtest.py -a -j 4 -t || if [[ $? == 2 ]]; then true; else false; fi before_script: skip after_success: skip - python: pypy2 + python: pypy env: - PYVER=pypy - PYTHON=pypy @@ -78,6 +78,7 @@ jobs: - PYVER=pypy3 - PYTHON=pypy3 sudo: required + dist: xenial - &coverage_jobs diff --git a/.travis/install.sh b/.travis/install.sh index 6510f17..feb3dd4 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -23,8 +23,8 @@ else sudo apt-get -y install gdc # dependencies for docbook tests sudo apt-get -y install docbook-xml xsltproc libxml2-dev libxslt-dev fop docbook-xsl-doc-pdf - # dependencies for latex tests - sudo apt-get -y install texlive texlive-latex3 biber texmaker ghostscript + # dependencies for latex tests (try to skip the huge doc pkgs) + sudo apt-get -y --no-install-recommends install texlive texlive-latex3 biber texmaker ghostscript # need some things for building dependencies for other tests sudo apt-get -y install python-pip python-dev build-essential libpcre3-dev autoconf automake libtool bison subversion git # dependencies for docbook tests continued |