forked from friendica/friendica-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
71 lines (65 loc) · 1.66 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
kind: pipeline
type: docker
name: Check messages.po
clone:
disable: true
trigger:
event:
- pull_request
steps:
- name: clone friendica base
image: alpine/git
commands:
- git clone https://github.com/friendica/friendica.git .
- git checkout $DRONE_COMMIT_BRANCH
- name: clone friendica addon
image: alpine/git
commands:
- git clone $DRONE_REPO_LINK addon
- cd addon/
- git checkout $DRONE_COMMIT_BRANCH
- git fetch origin $DRONE_COMMIT_REF
- git merge $DRONE_COMMIT_SHA
- name: Run Xgettext for addons
image: friendicaci/transifex
commands:
- /xgettext-addon.sh
- name: Check update necessary
image: friendicaci/transifex
commands:
- /check-addons.sh
---
kind: pipeline
type: docker
name: php-cs check
clone:
disable: true
trigger:
event:
- pull_request
steps:
- name: Clone friendica base
image: alpine/git
commands:
- git clone https://github.com/friendica/friendica.git .
- git checkout $DRONE_COMMIT_BRANCH
- name: Clone friendica addon
image: alpine/git
commands:
- git clone $DRONE_REPO_LINK addon
- cd addon/
- git checkout $DRONE_COMMIT_BRANCH
- git fetch origin $DRONE_COMMIT_REF
- git merge $DRONE_COMMIT_SHA
- name: Install dependencies
image: composer
commands:
- ./bin/composer.phar run cs:install
- name: Run coding standards check
image: friendicaci/php-cs
commands:
- cd addon/
- export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2 | sed -e "s/^/addon\\//")"
- cd ../
- /check-php-cs.sh