forked from openeuropa/drupal-site-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runner.yml.dist
36 lines (32 loc) · 1.09 KB
/
runner.yml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
drupal:
root: "web"
base_url: ${env.DRUPAL_BASE_URL}
site:
profile: "oe_profile"
name: "My OpenEuropa site"
generate_db_url: false
account:
name: ${env.DRUPAL_ACCOUNT_USERNAME}
password: ${env.DRUPAL_ACCOUNT_PASSWORD}
behat:
tags: "~@wip"
selenium:
host: "http://selenium"
port: "4444"
browser: "chrome"
toolkit:
build:
dist:
commands:
- { task: "copy", from: "lib/modules", to: "dist/${drupal.root}/modules/custom" }
- { task: "copy", from: "lib/themes", to: "dist/${drupal.root}/themes/custom" }
- { task: "copy", from: "lib/profiles", to: "dist/${drupal.root}/profiles/custom" }
dev:
commands:
- { task: "symlink", from: "../../lib/modules", to: "${drupal.root}/modules/custom" }
- { task: "symlink", from: "../../lib/themes", to: "${drupal.root}/themes/custom" }
- { task: "symlink", from: "../../lib/profiles", to: "${drupal.root}/profiles/custom" }
- { task: "run", command: "drupal:setup-test" }
commands:
drupal:setup-test:
- { task: "process", source: "behat.yml.dist", destination: "behat.yml" }