From b43b995a90c8cd30ad423ec3e133a6953565a820 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Mar 2021 18:33:42 +0200 Subject: [PATCH] Add drone.yml for Drone CI --- .drone.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9b3e556 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,43 @@ +--- +kind: pipeline +type: docker +name: python39 + +steps: +- name: build + image: python:3.9-slim + commands: + - id + - python -V + - apt update && apt install -y gcc g++ libicu-dev pkg-config + - pip install -r requirements-dev.txt + +--- +kind: pipeline +type: docker +name: python38 + +steps: +- name: build + image: python:3.8-slim + commands: + - id + - python -V + - apt update && apt install -y gcc g++ libicu-dev pkg-config + - pip install -r requirements-dev.txt + +--- +kind: pipeline +type: docker +name: python37 + +steps: +- name: build + image: python:3.7-slim + commands: + - id + - python -V + - apt update && apt install -y gcc g++ libicu-dev pkg-config + - pip install -r requirements-dev.txt + +# vim: ts=2 sw=2 et