diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b39a1d3f50bc67f393e1c67e7c01de97b94e362..a27b2cc5c8a6248717456e72dcc21c68f8bd5d49 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,10 @@ variables: POSTGRES_USER: portalmec POSTGRES_PASSWORD: 123mudar +stages: + - test + - deploy + before_script: - apt-get update -y - apt-get install default-jre postgresql-client -y @@ -15,14 +19,26 @@ before_script: # gems - gem install bundler - bundle install --jobs $(nproc) --path=/cache/bundler - - bundle exec rake db:migrate:reset RAILS_ENV=test test: stage: test script: + - bundle exec rake db:migrate:reset RAILS_ENV=test - rake test tags: - ruby - postgres - elasticsearch - - redis \ No newline at end of file + - redis + +#deploy: +# stage: deploy +# script: +# - mina deploy +# only: +# - master +# tags: +# - ruby +# - postgres +# - elasticsearch +# - redis \ No newline at end of file diff --git a/config/orientdb.yml b/config/orientdb.yml deleted file mode 100644 index c8844893fba2e62eeffbc7f2dd943ee285340254..0000000000000000000000000000000000000000 --- a/config/orientdb.yml +++ /dev/null @@ -1,15 +0,0 @@ -development: &development - host: localhost - database: portalmec - username: admin - password: admin - port: 2480 - ssl: false - -test: - host: mecdb1.c3sl.ufpr.br - database: PortalMEC - username: admin - password: admin - port: 2480 - ssl: false