csv-metadata-quality-web/.drone.yml

44 lines
727 B
YAML
Raw Normal View History

2022-07-02 10:44:48 +02:00
---
kind: pipeline
type: docker
name: python310
steps:
- name: build
image: python:3.10-slim
commands:
- id
- python -V
- apt update && apt install -y gcc g++ libicu-dev pkg-config git
- pip install -r requirements-dev.txt
2021-03-14 17:33:42 +01:00
---
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
2021-03-14 17:33:42 +01:00
- 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
2021-03-14 17:33:42 +01:00
- pip install -r requirements-dev.txt
# vim: ts=2 sw=2 et