Skip to content
Snippets Groups Projects
Commit 8ec59658 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

testing gitlab-ci

parent 083faf66
No related branches found
No related tags found
No related merge requests found
......@@ -3,20 +3,31 @@ services:
variables:
POSTGRES_DB: portalmec_test
POSTGRES_USER: custom_user
POSTGRES_PASSWORD: custom_pass
before_script:
- apt-get update -y
- apt-get install default-jre postgresql-client -y
- gem install bundler
- bundle install --jobs $(nproc) --path=/cache/bundler
- bundle exec rake db:create
test:
stage: test
connect:
image: postgres
script:
- rake test
tags:
- ruby
- postgres
- elasticsearch
- redis
\ No newline at end of file
# official way to provide password to psql: http://www.postgresql.org/docs/9.3/static/libpq-envars.html
- export PGPASSWORD=$POSTGRES_PASSWORD
- psql -h "postgres" -U "$POSTGRES_USER" -d "$POSTGRES_DB" -c "SELECT 'OK' AS status;"
#before_script:
# - apt-get update -y
# - apt-get install default-jre postgresql-client -y
# - gem install bundler
# - bundle install --jobs $(nproc) --path=/cache/bundler
# - bundle exec rake db:create
#test:
# stage: test
# script:
# - rake test
# tags:
# - ruby
# - postgres
# - elasticsearch
# - redis
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment