Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated .gitlab-ci.yml - included stages
  • Loading branch information
Javinator9889 committed May 17, 2020
1 parent faf7067 commit 70b089b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Expand Up @@ -24,10 +24,10 @@ before_script:
- apt update
- apt install -y --no-install-recommends libchromaprint-tools ffmpeg libpq-dev git postgresql sudo
- pg_ctlcluster 11 main start
- sudo -u postgres -i
- 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";
- su - postgres
- psql -U postgres -c "CREATE DATABASE youtubemd;"
- psql -U postgres -c "CREATE USER $DATABASE_USER WITH ENCRYPTED PASSWORD '$DATABASE_PASSWORD';"
- psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE youtubemd TO $DATABASE_USER";
- exit
- git clone https://github.com/beetbox/pyacoustid.git && cd pyacoustid
- python setup.py install
Expand Down

0 comments on commit 70b089b

Please sign in to comment.