Add minimal buildbot testing scenario

This commit is contained in:
Lee Miller 2022-04-25 02:33:55 +03:00
parent 1602964b1c
commit 066557741b
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
FROM ubuntu:bionic AS bionic
RUN apt-get update
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
python3-dev python3-pip python3.8 python3.8-dev python3.8-venv
RUN python3.8 -m pip install setuptools wheel
RUN python3.8 -m pip install --upgrade pip tox virtualenv

4
.buildbot/ubuntu/test.sh Executable file
View File

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