Fix {} not working with alpine sh

This commit is contained in:
Tusooa Zhu 2022-08-28 10:35:53 -04:00
parent a26fb6ab48
commit f8566e91a6
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 23 additions and 1 deletions

View File

@ -41,11 +41,33 @@ after_script:
check-changelog:
stage: check-changelog
image: alpine
rules:
- if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "develop"
before_script: ''
after_script: ''
cache: {}
script:
- echo $CI_MERGE_REQUEST_IID
- count=0; for i in changelog.d/"$CI_MERGE_REQUEST_IID".{add,remove,fix,security,skip}; do [ -f "$i" ]; count=$(( $count + 1 - $? )); done; if [ $count -eq 1 ]; then echo "ok"; else echo "must have a changelog entry or explicitly skip it"; exit 1; fi
- >
ls changelog.d
count=0
for i in add remove fix security skip; do
[ -f changelog.d/"$CI_MERGE_REQUEST_IID"."$i" ]
retcode=$?
if [ $retcode -eq 0 ]; then
echo "found $CI_MERGE_REQUEST_IID.$i"
else
echo "no $CI_MERGE_REQUEST_IID.$i"
fi
count=$(( $count + 1 - $retcode ))
done
if [ $count -eq 1 ]; then
echo "ok"
else
echo "must have a changelog entry or explicitly skip it"
exit 1
fi
build:
stage: build