Skip to content

Commit

Permalink
Updated .gitlab-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed May 17, 2020
1 parent 831d2a5 commit 1d04db0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitlab-ci.yml
Expand Up @@ -19,7 +19,12 @@ cache:
before_script:
- python -V # Print out python version for debugging
- apt update
- apt install -y --no-install-recommends libchromaprint-tools ffmpeg libpq-dev git
- apt install -y --no-install-recommends libchromaprint-tools ffmpeg libpq-dev git postgresql
- pg_ctlcluster 11 main start
- su - postgres
- psql -c "CREATE DATABASE youtubemd;"
- psql -c "CREATE USER $DATABASE_USER WITH ENCRYPTED PASSWORD '$DATABASE_PASSWORD';"
- psql -c "GRANT ALL PRIVILEGES ON DATABASE youtubemd TO $DATABASE_USER";
- git clone https://github.com/beetbox/pyacoustid.git && cd pyacoustid
- python setup.py install
- cd .. && rm -rf pyacoustid/
Expand Down

0 comments on commit 1d04db0

Please sign in to comment.