mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
更新 CI 规则
This commit is contained in:
parent
2e6a33d15a
commit
12fc529d9a
16
Makefile
16
Makefile
@ -18,28 +18,28 @@ $(CHANGE_FILE):
|
|||||||
git --no-pager diff $(TRAVIS_BRANCH) FETCH_HEAD --no-renames --name-status > $@
|
git --no-pager diff $(TRAVIS_BRANCH) FETCH_HEAD --no-renames --name-status > $@
|
||||||
|
|
||||||
rule-source-added:
|
rule-source-added:
|
||||||
[ $(shell egrep '^A\s*sources/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) -ge 1 ]
|
[ $(shell grep '^A\s*sources/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) -ge 1 ]
|
||||||
[ $(shell egrep -v '^A\s*sources/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 0 ]
|
[ $(shell grep -v '^A\s*sources/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 0 ]
|
||||||
echo 'Rule Matched: $(@)'
|
echo 'Rule Matched: $(@)'
|
||||||
|
|
||||||
rule-translation-requested:
|
rule-translation-requested:
|
||||||
[ $(shell egrep '^M\s*sources/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^M\s*sources/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell cat $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell cat $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
echo 'Rule Matched: $(@)'
|
echo 'Rule Matched: $(@)'
|
||||||
|
|
||||||
rule-translation-completed:
|
rule-translation-completed:
|
||||||
[ $(shell egrep '^D\s*sources/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^D\s*sources/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell egrep '^A\s*translated/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^A\s*translated/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell cat $(CHANGE_FILE) | wc -l) = 2 ]
|
[ $(shell cat $(CHANGE_FILE) | wc -l) = 2 ]
|
||||||
echo 'Rule Matched: $(@)'
|
echo 'Rule Matched: $(@)'
|
||||||
|
|
||||||
rule-translation-revised:
|
rule-translation-revised:
|
||||||
[ $(shell egrep '^M\s*translated/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^M\s*translated/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell cat $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell cat $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
echo 'Rule Matched: $(@)'
|
echo 'Rule Matched: $(@)'
|
||||||
|
|
||||||
rule-translation-published:
|
rule-translation-published:
|
||||||
[ $(shell egrep '^D\s*translated/(news|talk|tech)/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^D\s*translated/[^\/]*/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell egrep '^A\s*published/\d{8} [a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
[ $(shell grep '^A\s*published/[a-zA-Z0-9_.,\(\) \-]*\.md' $(CHANGE_FILE) | wc -l) = 1 ]
|
||||||
[ $(shell cat $(CHANGE_FILE) | wc -l) = 2 ]
|
[ $(shell cat $(CHANGE_FILE) | wc -l) = 2 ]
|
||||||
echo 'Rule Matched: $(@)'
|
echo 'Rule Matched: $(@)'
|
||||||
|
Loading…
Reference in New Issue
Block a user