2021-03-14 18:33:42 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: python39
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.9-slim
|
|
|
|
commands:
|
|
|
|
- id
|
|
|
|
- python -V
|
2021-03-14 19:32:14 +02:00
|
|
|
- apt update && apt install -y gcc g++ libicu-dev pkg-config git
|
2021-03-14 18:33:42 +02: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
|
2021-03-14 19:32:14 +02:00
|
|
|
- apt update && apt install -y gcc g++ libicu-dev pkg-config git
|
2021-03-14 18:33:42 +02:00
|
|
|
- pip install -r requirements-dev.txt
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: python37
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.7-slim
|
|
|
|
commands:
|
|
|
|
- id
|
|
|
|
- python -V
|
2021-03-14 19:32:14 +02:00
|
|
|
- apt update && apt install -y gcc g++ libicu-dev pkg-config git
|
2021-03-14 18:33:42 +02:00
|
|
|
- pip install -r requirements-dev.txt
|
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et
|