- AIDA. Автоматизация работы с Git, JIRA и TeamCity.
- GitPHP в Badoo.
- Процесс разработки в Badoo.
- Процесс разработки и выкатка релизов в Badoo. Автоматическое тестирование. Девелоперское окружение.
- Git rebase «по кнопке».
- Внутреннее устройство Git: хранение данных и merge.
- Оптимальная параллелизация юнит-тестов или 17000 тестов за 4 минуты.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter { | |
if [type] == 'php-fpm-slow-log' { | |
# Drop empty lines | |
if [message] =~ /^\s*$/ { | |
drop { } | |
} | |
# Time prefix appears on each line | |
multiline { | |
pattern => "^(\[0x0|script_filename|$)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter { | |
if [type] == 'php-errors-json' { | |
json { | |
source => 'message' | |
remove_field => '[message]' | |
} | |
date { | |
match => [ "[timestamp]", "UNIX" ] | |
target => "@timestamp" |
For example your latest image with semantic versioning looks like this:
${DOCKER_HUB_ORG}/${DOCKER_HUB_REPO}:v1.20.0
Example provided above will do the folowing:
- Generate token using your github username and password.
- Get list of all tags from repository.