forked from openeuropa/oe_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runner.yml.dist
35 lines (34 loc) · 1.17 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
drupal:
root: "build"
base_url: "http://web:8080/build"
database:
host: "mysql"
port: "3306"
name: "drupal"
user: "root"
password: ""
post_install:
- "./vendor/bin/drush en config_devel -y"
- "./vendor/bin/drush theme:enable oe_theme -y"
- "./vendor/bin/drush config-set system.theme default oe_theme -y"
- "./vendor/bin/drush en oe_theme_demo -y"
- "./vendor/bin/drush cr"
settings:
settings:
file_scan_ignore_directories:
- "node_modules"
- "bower_components"
- "vendor"
- "${drupal.root}"
commands:
drupal:site-setup:
- { task: "symlink", from: "../../..", to: "${drupal.root}/themes/custom/oe_theme" }
- { task: "symlink", from: "${drupal.root}/core/.stylelintrc.json", to: ".stylelintrc.json" }
- { task: "run", command: "drupal:drush-setup" }
- { task: "run", command: "drupal:settings-setup" }
- { task: "run", command: "setup:phpunit" }
- { task: "run", command: "setup:behat" }
setup:phpunit:
- { task: "process", source: "phpunit.xml.dist", destination: "phpunit.xml" }
setup:behat:
- { task: "process", source: "behat.yml.dist", destination: "behat.yml" }