Allow to pre-register Custom Tasks

This commit is contained in:
Andrés Montañez
2017-04-14 20:36:45 -03:00
parent c14e3bc710
commit aa9793999a
11 changed files with 314 additions and 4 deletions
@@ -0,0 +1,13 @@
magephp:
environments:
production:
user: app
host_path: /var/www/myapp
hosts:
- webserver
pre-deploy:
on-deploy:
- custom-invalid-class
post-deploy:
custom_tasks:
- Mage\Tests\Task\Custom\InvalidClass
@@ -0,0 +1,13 @@
magephp:
environments:
production:
user: app
host_path: /var/www/myapp
hosts:
- webserver
pre-deploy:
on-deploy:
- custom-invalid-inheritance
post-deploy:
custom_tasks:
- Mage\Tests\Task\Custom\InvalidInheritanceTask
@@ -0,0 +1,13 @@
magephp:
environments:
production:
user: app
host_path: /var/www/myapp
hosts:
- webserver
pre-deploy:
on-deploy:
- custom-not-instantiable
post-deploy:
custom_tasks:
- Mage\Tests\Task\Custom\NotInstantiableTask
+13
View File
@@ -0,0 +1,13 @@
magephp:
environments:
production:
user: app
host_path: /var/www/myapp
hosts:
- webserver
pre-deploy:
on-deploy:
- custom-valid
post-deploy:
custom_tasks:
- Mage\Tests\Task\Custom\ValidTask