Skip to content

Commit

Permalink
Updated .gitlab-ci.yml - included stages
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed May 17, 2020
1 parent 307d0eb commit 817601d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Expand Up @@ -24,9 +24,9 @@ before_script:
- apt update
- apt install -y --no-install-recommends libchromaprint-tools ffmpeg libpq-dev git postgresql sudo
- /etc/init.d/postgresql start
- sudo -u postgres sh -c 'psql -U postgres -c "CREATE DATABASE youtubemd;"'
- sudo -u postgres sh -c 'psql -U postgres -c "CREATE USER $DATABASE_USER WITH ENCRYPTED PASSWORD \'$DATABASE_PASSWORD\';"'
- sudo -u postgres sh -c 'psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE youtubemd TO $DATABASE_USER";'
- sudo -u postgres sh -c "psql -U postgres -c \"CREATE DATABASE youtubemd;\""
- sudo -u postgres sh -c "psql -U postgres -c \"CREATE USER $DATABASE_USER WITH ENCRYPTED PASSWORD '$DATABASE_PASSWORD';\""
- sudo -u postgres sh -c "psql -U postgres -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 817601d

Please sign in to comment.