Как регистрировать развертывания в Deployer? - PullRequest
0 голосов
/ 10 января 2020

Я использую Deployer и наслаждаюсь им.

Одна вещь, которую я пока не понял, как это сделать, - это записать файл журнала моих развертываний.

Я пытаюсь добавить коммит ha sh и дату в revisions.txt:

task('log_the_deployment', function () {//https://stackoverflow.com/a/4546755/470749
    $selectedStage = Deployer::get()->getInput()->getArgument('stage'); //https://github.com/deployphp/deployer/blob/6180366acff3ca5b2ec511a84e671321c02e7af1/recipe/config/hosts.php#L15
    runLocally('set -e'); //https://deployer.org/docs/api.html#runlocally
    runLocally('commit_short_hash=$(git rev-parse --short HEAD)');
    runLocally('commit=$(git log -1 --pretty="%H%n%ci")');
    runLocally('commit_hash=$(echo "$commit" | head -1)');
    runLocally('commit_date=$(echo "$commit" | head -2 | tail -1)');
    runLocally('branch_name=$(git symbolic-ref -q HEAD)');
    runLocally('branch_name=${branch_name##refs/heads/}');
    runLocally('branch_name=${branch_name:-HEAD}');
    runLocally('echo -e "$commit_date ' . $selectedStage . ' $commit_short_hash branch=\'$branch\' $commit_hash" >> releases.txt');//TODO: prepend instead https://stackoverflow.com/questions/10587615/unix-command-to-prepend-text-to-a-file
});

Результат должен выглядеть примерно так: 2020-01-09 22:07:00 -0500 staging 146f012d branch='master' 146f012d28d866105aa12605cec6f374d45aec75

К сожалению, моя задача сейчас записывает в файл только это: -e staging branch=''

Что я неправильно понимаю в Deployer, runLocally, git или Unix?

И если есть гораздо лучший подход для достижения моя цель, я счастлив идти по совершенно иному пути go.

1 Ответ

0 голосов
/ 11 января 2020

Объединение их в одну строку, казалось, позволило ему работать:

task('log_the_deployment', function () {
    $selectedStage = Deployer::get()->getInput()->getArgument('stage');
    runLocally('set -e && deployed_moment=$(date +\'%Y-%m-%d %H:%M:%S UTC\') && commit_short_hash=$(git rev-parse --short HEAD) && commit=$(git log -1 --pretty="%H%n%ci") && commit_hash_and_date=$(echo $commit | head -1) && commit_date=$(git show -s --format=%ci) && symbRefHead=$(git symbolic-ref -q HEAD) && echo "Deployed $deployed_moment to ' . $selectedStage . ' from branch \"$symbRefHead\"; Commit: $commit_hash_and_date $commit_short_hash" >> " >> releases.txt');
    upload('releases.txt', '{{release_path}}/releases.txt');
});

А затем я создал маршрут, подобный этому:

Route::get('release', function () {
    $publicDir = getcwd();
    $deployments = file($publicDir . "/../releases.txt", FILE_IGNORE_NEW_LINES);
    return response()->json(['folder' => $publicDir, 'deployments' => array_reverse($deployments)], 200, [], JSON_PRETTY_PRINT);
});

Эти сообщения помогли:

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...