mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:11:09 +00:00
35 lines
913 B
YAML
35 lines
913 B
YAML
skip_clone: true
|
|
|
|
pipeline:
|
|
clone_friendica_base:
|
|
image: alpine/git
|
|
commands:
|
|
- git clone https://github.com/friendica/friendica.git .
|
|
- git checkout $CI_COMMIT_BRANCH
|
|
when:
|
|
event: pull_request
|
|
clone_friendica_addon:
|
|
image: alpine/git
|
|
commands:
|
|
- git clone $CI_REPO_LINK addon
|
|
- cd addon/
|
|
- git checkout $CI_COMMIT_BRANCH
|
|
- git fetch origin $CI_COMMIT_REF
|
|
- git merge $CI_COMMIT_SHA
|
|
when:
|
|
event: pull_request
|
|
composer_install:
|
|
image: composer
|
|
commands:
|
|
- ./bin/composer.phar run cs:install
|
|
when:
|
|
event: pull_request
|
|
check:
|
|
image: friendicaci/php-cs
|
|
commands:
|
|
- cd addon/
|
|
- export CHANGED_FILES="$(git diff --name-status ${CI_PREV_COMMIT_SHA}..${CI_COMMIT_SHA} | grep ^A | cut -f2 | sed -e "s/^/addon\\//")"
|
|
- cd ../
|
|
- /check-php-cs.sh
|
|
when:
|
|
event: pull_request
|