30 lines
802 B
YAML
30 lines
802 B
YAML
|
include:
|
||
|
- local: '/.gitlab/ci/integration/clearbit.yml'
|
||
|
- local: '/.gitlab/ci/integration/email_helper_deliver.yml'
|
||
|
- local: '/.gitlab/ci/integration/es.yml'
|
||
|
- local: '/.gitlab/ci/integration/facebook.yml'
|
||
|
- local: '/.gitlab/ci/integration/geo.yml'
|
||
|
- local: '/.gitlab/ci/integration/otrs.yml'
|
||
|
- local: '/.gitlab/ci/integration/slack.yml'
|
||
|
- local: '/.gitlab/ci/integration/user_agent.yml'
|
||
|
- local: '/.gitlab/ci/integration/zendesk.yml'
|
||
|
|
||
|
.template_integration: &template_integration
|
||
|
extends:
|
||
|
- .env_base
|
||
|
- .services_mysql_postgresql
|
||
|
tags:
|
||
|
- integration
|
||
|
stage: test
|
||
|
variables:
|
||
|
RAILS_ENV: "test"
|
||
|
|
||
|
# we need at least one job to store and include this template
|
||
|
# $IGNORE is not defined
|
||
|
ignore:
|
||
|
stage: test
|
||
|
only:
|
||
|
variables:
|
||
|
- $IGNORE
|
||
|
script:
|
||
|
- ''
|