mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-24 23:30:18 +01:00
Add .drone.yml
Uses multiple pipelines to test several versions of Python. A few things to note: - I use the -slim Python packages, which are smaller and yet still have no problem installing psycopg2-binary with pip - I have to start a PostgreSQL database service for each pipeline separately
This commit is contained in:
parent
930250352a
commit
707f878b94
156
.drone.yml
Normal file
156
.drone.yml
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: python39
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: setup
|
||||||
|
image: postgres:10-alpine
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: postgres
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- psql --version
|
||||||
|
- sleep 5
|
||||||
|
- pg_isready -h database -U postgres -d dspacestatistics
|
||||||
|
- createuser -h database -U postgres dspacestatistics
|
||||||
|
- psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
||||||
|
- psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
image: python:3.9-slim
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: dspacestatistics
|
||||||
|
DATABASE_HOST: database
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- python -V
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- pip install -r requirements-dev.txt
|
||||||
|
- pytest
|
||||||
|
|
||||||
|
services:
|
||||||
|
- name: database
|
||||||
|
image: postgres:10-alpine
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: dspacestatistics
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: python38
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: database
|
||||||
|
image: postgres:10-alpine
|
||||||
|
detach: true
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: dspacestatistics
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
image: postgres:10-alpine
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: postgres
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- psql --version
|
||||||
|
- sleep 5
|
||||||
|
- pg_isready -h database -U postgres -d dspacestatistics
|
||||||
|
- createuser -h database -U postgres dspacestatistics
|
||||||
|
- psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
||||||
|
- psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
image: python:3.8-slim
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: dspacestatistics
|
||||||
|
DATABASE_HOST: database
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- python -V
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- pip install -r requirements-dev.txt
|
||||||
|
- pytest
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: python37
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: database
|
||||||
|
image: postgres:10-alpine
|
||||||
|
detach: true
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: dspacestatistics
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
image: postgres:10-alpine
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: postgres
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- psql --version
|
||||||
|
- sleep 5
|
||||||
|
- pg_isready -h database -U postgres -d dspacestatistics
|
||||||
|
- createuser -h database -U postgres dspacestatistics
|
||||||
|
- psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
||||||
|
- psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
image: python:3.7-slim
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: dspacestatistics
|
||||||
|
DATABASE_HOST: database
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- python -V
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- pip install -r requirements-dev.txt
|
||||||
|
- pytest
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: python36
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: database
|
||||||
|
image: postgres:10-alpine
|
||||||
|
detach: true
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: dspacestatistics
|
||||||
|
|
||||||
|
- name: setup
|
||||||
|
image: postgres:10-alpine
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: postgres
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- psql --version
|
||||||
|
- sleep 5
|
||||||
|
- pg_isready -h database -U postgres -d dspacestatistics
|
||||||
|
- createuser -h database -U postgres dspacestatistics
|
||||||
|
- psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
||||||
|
- psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
image: python:3.6-slim
|
||||||
|
environment:
|
||||||
|
PGPASSWORD: dspacestatistics
|
||||||
|
DATABASE_HOST: database
|
||||||
|
commands:
|
||||||
|
- id
|
||||||
|
- python -V
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
- pip install -r requirements-dev.txt
|
||||||
|
- pytest
|
||||||
|
|
||||||
|
# vim: ts=2 sw=2 et
|
Loading…
Reference in New Issue
Block a user