Added dedicated db jobs for imports.
This commit is contained in:
parent
da1534d0f9
commit
a52b2472a8
1 changed files with 31 additions and 4 deletions
|
@ -131,7 +131,7 @@ job_integration_user_agent:
|
||||||
- rake db:migrate
|
- rake db:migrate
|
||||||
- ruby -I test/ test/integration/user_agent_test.rb
|
- ruby -I test/ test/integration/user_agent_test.rb
|
||||||
|
|
||||||
job_integration_es:
|
job_integration_es_mysql:
|
||||||
stage: test
|
stage: test
|
||||||
tags:
|
tags:
|
||||||
- core
|
- core
|
||||||
|
@ -147,7 +147,7 @@ job_integration_es:
|
||||||
- ruby -I test/ test/controllers/search_controller_test.rb
|
- ruby -I test/ test/controllers/search_controller_test.rb
|
||||||
- ruby -I test/ test/integration/report_test.rb
|
- ruby -I test/ test/integration/report_test.rb
|
||||||
|
|
||||||
job_integration_es:
|
job_integration_es_postgresql:
|
||||||
stage: test
|
stage: test
|
||||||
tags:
|
tags:
|
||||||
- core
|
- core
|
||||||
|
@ -163,10 +163,11 @@ job_integration_es:
|
||||||
- ruby -I test/ test/controllers/search_controller_test.rb
|
- ruby -I test/ test/controllers/search_controller_test.rb
|
||||||
- ruby -I test/ test/integration/report_test.rb
|
- ruby -I test/ test/integration/report_test.rb
|
||||||
|
|
||||||
job_integration_zendesk:
|
job_integration_zendesk_mysql:
|
||||||
stage: test
|
stage: test
|
||||||
tags:
|
tags:
|
||||||
- core
|
- core
|
||||||
|
- mysql
|
||||||
script:
|
script:
|
||||||
- export RAILS_ENV=test
|
- export RAILS_ENV=test
|
||||||
- rake db:drop;
|
- rake db:drop;
|
||||||
|
@ -174,10 +175,36 @@ job_integration_zendesk:
|
||||||
- rake db:migrate
|
- rake db:migrate
|
||||||
- ruby -I test/ test/integration/zendesk_import_test.rb
|
- ruby -I test/ test/integration/zendesk_import_test.rb
|
||||||
|
|
||||||
job_integration_otrs_5:
|
job_integration_zendesk_postgresql:
|
||||||
stage: test
|
stage: test
|
||||||
tags:
|
tags:
|
||||||
- core
|
- core
|
||||||
|
- postgresql
|
||||||
|
script:
|
||||||
|
- export RAILS_ENV=test
|
||||||
|
- rake db:drop;
|
||||||
|
- rake db:create
|
||||||
|
- rake db:migrate
|
||||||
|
- ruby -I test/ test/integration/zendesk_import_test.rb
|
||||||
|
|
||||||
|
job_integration_otrs_5_mysql:
|
||||||
|
stage: test
|
||||||
|
tags:
|
||||||
|
- core
|
||||||
|
- mysql
|
||||||
|
script:
|
||||||
|
- export RAILS_ENV=test
|
||||||
|
- export IMPORT_OTRS_ENDPOINT="http://vz599.demo.znuny.com/otrs/public.pl?Action=ZammadMigrator"
|
||||||
|
- rake db:drop;
|
||||||
|
- rake db:create
|
||||||
|
- rake db:migrate
|
||||||
|
- ruby -I test/ test/integration/otrs_import_test.rb
|
||||||
|
|
||||||
|
job_integration_otrs_5_postgresql:
|
||||||
|
stage: test
|
||||||
|
tags:
|
||||||
|
- core
|
||||||
|
- postgresql
|
||||||
script:
|
script:
|
||||||
- export RAILS_ENV=test
|
- export RAILS_ENV=test
|
||||||
- export IMPORT_OTRS_ENDPOINT="http://vz599.demo.znuny.com/otrs/public.pl?Action=ZammadMigrator"
|
- export IMPORT_OTRS_ENDPOINT="http://vz599.demo.znuny.com/otrs/public.pl?Action=ZammadMigrator"
|
||||||
|
|
Loading…
Reference in a new issue