deployer/test/e2e/recipe/deploy.php
Anton Medvedev af68f672c6
Refactor ssh arguments (#2234)
* Refactor ssh arguments
* Use special control path for CI env
2020-10-27 00:22:23 +03:00

14 lines
312 B
PHP

<?php declare(strict_types=1);
namespace Deployer;
set('application', 'deployer-e2e');
host('server.test')
->setDeployPath('/var/www/html')
->setTag('e2e')
->setRemoteUser('deployer')
->setSshArguments([
'-o UserKnownHostsFile=/dev/null',
'-o StrictHostKeyChecking=no',
]);