File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ install:
32
32
- pip install .
33
33
34
34
script :
35
- - tox -e `if [ "$TRAVIS_PYTHON_VERSION" == "pypy2.7-6.0" ]; then echo pypy; else echo py${TRAVIS_PYTHON_VERSION/./}; fi`
35
+ - tox -i https://pypi.python.org/simple -e `if [ "$TRAVIS_PYTHON_VERSION" == "pypy2.7-6.0" ]; then echo pypy; else echo py${TRAVIS_PYTHON_VERSION/./}; fi`
36
36
37
37
after_success :
38
38
- coveralls
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:xenial
2
2
ENV DEBIAN_FRONTEND=noninteractive
3
3
4
- RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" >> /etc/apt/sources.list
5
4
RUN echo "deb http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu precise main" >> /etc/apt/sources.list
6
- RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5BB92C09DB82666C C2518248EEA14886
7
- RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections
5
+ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5BB92C09DB82666C
8
6
RUN apt-get update && apt-get install -y python2.7-dev \
9
7
python3.5-dev \
10
8
python-pkg-resources \
11
9
python-setuptools \
12
10
python-virtualenv \
13
11
libsnappy-dev \
14
- oracle-java8-installer \
12
+ locales \
13
+ openjdk-8-jdk \
15
14
wget\
16
15
g++ \
17
16
ca-certificates \
@@ -25,7 +24,7 @@ RUN ln -s $PWD/pypy2-v5.8.0-linux64/bin/pypy /usr/local/bin/pypy
25
24
26
25
RUN /usr/sbin/locale-gen en_US.UTF-8
27
26
ENV LANG en_US.UTF-8
28
- ENV JAVA_HOME="/usr/lib/jvm/java-8-oracle "
27
+ ENV JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk-amd64 "
29
28
ENV PATH="$PATH:$JAVA_HOME/bin"
30
29
31
30
COPY servers /work/servers
You can’t perform that action at this time.
0 commit comments