Configured .gitlab-ci.yml, Dockerfile, and RoboFile.php

This commit is contained in:
Gregorio Chiko Putra
2018-08-01 15:19:30 +07:00
parent 43702d2c24
commit 3116d76982
5 changed files with 709 additions and 74 deletions

17
RoboFile.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/
class RoboFile extends \Robo\Tasks
{
public function testServer()
{
$this->taskSshExec('192.168.1.17', 'root')
->remoteDir('/var/www')
->exec('echo hello')
->exec('ls -al')
->run();
}
}