Peter Surda
d05ae4c2b5
- untested - create bionic build environment, run travis on bionic, build on wine + run travis under wine
49 lines
1.6 KiB
Docker
49 lines
1.6 KiB
Docker
FROM ubuntu:bionic
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN dpkg --add-architecture i386
|
|
|
|
RUN apt-get update
|
|
|
|
# travis xenial bionic
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python-setuptools libssl-dev python-dev python-virtualenv python-pip
|
|
|
|
# travis focal
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python-setuptools libssl-dev python-dev python3-virtualenv python3-pip
|
|
|
|
# dpkg
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python-minimal python-setuptools python-all python openssl libssl-dev \
|
|
dh-apparmor debhelper dh-python python-msgpack python-qt4 git python-stdeb \
|
|
python-all-dev
|
|
|
|
# Code quality
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
pylint python-pycodestyle python3-pycodestyle pycodestyle python-flake8 \
|
|
python3-flake8 flake8 python-pyflakes python3-pyflakes pyflakes pyflakes3 \
|
|
curl
|
|
|
|
# Wine32
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python python-pip wget wine-stable winetricks mingw-w64 wine32 wine64 xvfb
|
|
|
|
# Wine64
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python python-pip wget wine-stable winetricks mingw-w64 wine32 wine64 xvfb
|
|
|
|
# Buildbot
|
|
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
buildbot-slave
|
|
|
|
# travis2bash
|
|
RUN wget -O /usr/local/bin/travis2bash.sh https://storage.bitmessage.org/travis2bash.sh
|
|
RUN chmod a+x /usr/local/bin/travis2bash.sh
|
|
|
|
RUN useradd -ms /bin/bash pool
|
|
|
|
RUN echo 'pool ALL=ALL NOPASSWD:ALL' >> /etc/sudoers
|
|
|