Enable Drone for Friendica addons

This commit is contained in:
Philipp Holzer 2021-05-17 21:40:14 +02:00
parent f04493b5bb
commit 1fca1a68d1
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 39 additions and 0 deletions

39
.drone.yml Normal file
View File

@ -0,0 +1,39 @@
---
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_REMOTE_URL addon
- git checkout $DRONE_COMMIT_REF
- name: Run default Xgettext
image: friendicaci/transifex
commands:
- export CHANGED_FILES=($(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2))
- export FIND_RESULT=$(printf "%s\n" "$CHANGED_FILES[@]" | sed '/^\./d' | cut -d "/" -f1 | uniq)
- for addon in $FIND_RESULT; do ./bin/run_xgettext.sh --addon $addon; done
- name: Check update necessary
image: alpine/git
commands:
- cd addon/
- if [[ $(git diff -U0 "**/messages.po" | awk '!/index|diff|\-\-\-|\+\+\+|@@|\-"POT-Creation-Date|\+"POT-Creation-Date|\+#|\-#/{print }' | wc -l) > 0 ]]; then
echo "::error file=messages.po::messages.po is out of date"
exit 1
else
echo "Nothing to update"
fi