mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-29 18:48:56 +02:00
Allow to pre-register Custom Tasks
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user