csv-metadata-quality-web/.drone.yml
Alan Orth f292a4902f
All checks were successful
continuous-integration/drone/push Build is passing
.drone.yml: Install git for some pip deps
2021-03-14 19:32:14 +02:00

44 lines
725 B
YAML

---
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 git
- 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 git
- 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 git
- pip install -r requirements-dev.txt
# vim: ts=2 sw=2 et