1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-06-26 16:13:47 +02:00

build.yml: Functioning build

Finally got this working after testing the manifest manually a few
times on the web UI.
This commit is contained in:
Alan Orth 2018-11-16 16:35:06 +02:00
parent 819f8e6b0d
commit d08c43f3d5

View File

@ -1,12 +1,21 @@
image: archlinux
packages:
- python-pipenv
- postgresql
sources:
- https://git.sr.ht/~alanorth/dspace-statistics-api
tasks:
- setup: |
id
psql --version
sudo su - postgres -c "initdb --locale en_US.UTF-8 -E UTF8 -D '/var/lib/postgres/data'"
sudo systemctl start postgresql
createuser -U postgres dspacestatistics
psql -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
createdb -U postgres -O dspacestatistics --encoding=UNICODE dspacestatistics
psql -U postgres -d dspacestatistics < tests/dspacestatistics.sql
cd dspace-statistics-api
pipenv install
- build: |
pipenv install --dev
- test: |
cd dspace-statistics-api
pipenv run pytest