Test pydbus on GLib 2.40 (Ubuntu 14.04) too.
parent
bf67bf4531
commit
c54adfebd5
@ -0,0 +1,11 @@
|
||||
FROM ubuntu:14.04
|
||||
RUN apt-get update
|
||||
|
||||
RUN apt-get install -y dbus python-gi python-pip psmisc python-dev
|
||||
RUN python2 --version
|
||||
RUN pip2 install greenlet
|
||||
|
||||
ADD . /root/
|
||||
RUN cd /root && python2 setup.py install
|
||||
|
||||
RUN /root/tests/run.sh python2 dontpublish
|
@ -0,0 +1,11 @@
|
||||
FROM ubuntu:14.04
|
||||
RUN apt-get update
|
||||
|
||||
RUN apt-get install -y dbus python3-gi python3-pip psmisc python3-dev
|
||||
RUN python3 --version
|
||||
RUN pip3 install greenlet
|
||||
|
||||
ADD . /root/
|
||||
RUN cd /root && python3 setup.py install
|
||||
|
||||
RUN /root/tests/run.sh python3 dontpublish
|
Loading…
Reference in New Issue