Add a buildbot dir for jammy, running only py310 env

This commit is contained in:
Lee Miller 2022-05-09 19:35:36 +03:00
parent d1ad273037
commit 05253a574b
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
3 changed files with 18 additions and 0 deletions

View File

@ -11,3 +11,5 @@ RUN apt-get install -yq --no-install-suggests --no-install-recommends \
language-pack-en qt5dxcb-plugin tor xvfb language-pack-en qt5dxcb-plugin tor xvfb
RUN python3.9 -m pip install --upgrade pip tox virtualenv RUN python3.9 -m pip install --upgrade pip tox virtualenv
ADD . .

View File

@ -0,0 +1,12 @@
FROM ubuntu:jammy
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
software-properties-common build-essential libcap-dev libffi-dev \
libssl-dev python-all-dev python-is-python3 python-setuptools \
python3-dev python3-pip language-pack-en qt5dxcb-plugin tor xvfb
RUN pip install tox

4
.buildbot/tox-jammy/test.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
tox -e lint-basic # || exit 1
tox -e py310