mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-08 16:18:53 +01:00
- Fix github actions ktlint reports
- Publish results on PR via commenting - Support for all modules along with tests - Code format & emoticons
This commit is contained in:
parent
5efe1f4bd8
commit
33a4eac7d2
49
.github/workflows/quality.yml
vendored
49
.github/workflows/quality.yml
vendored
@ -14,6 +14,7 @@ jobs:
|
|||||||
- name: Run code quality check suite
|
- name: Run code quality check suite
|
||||||
run: ./tools/check/check_code_quality.sh
|
run: ./tools/check/check_code_quality.sh
|
||||||
|
|
||||||
|
# ktlint for all the modules
|
||||||
ktlint:
|
ktlint:
|
||||||
name: Kotlin Linter
|
name: Kotlin Linter
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -23,12 +24,55 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./gradlew ktlintCheck --continue
|
./gradlew ktlintCheck --continue
|
||||||
- name: Upload reports
|
- name: Upload reports
|
||||||
|
if: always()
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ktlinting-report
|
name: ktlinting-report
|
||||||
path: vector/build/reports/ktlint/*.*
|
path: |
|
||||||
|
*/build/reports/ktlint/ktlint*/ktlint*.txt
|
||||||
|
- name: Handle Results
|
||||||
|
if: always()
|
||||||
|
id: get-comment-body
|
||||||
|
run: |
|
||||||
|
results="$(cat */*/build/reports/ktlint/ktlint*/ktlint*.txt */build/reports/ktlint/ktlint*/ktlint*.txt | sed -r "s/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g")"
|
||||||
|
if [ -z "$results" ]; then
|
||||||
|
body="👍 ✅ 👍"
|
||||||
|
else
|
||||||
|
body="👎 ❌ 👎 \`Failed${results}\`"
|
||||||
|
body="${body//'%'/'%25'}"
|
||||||
|
body="${body//$'\n'/'%0A'}"
|
||||||
|
body="${body//$'\r'/'%0D'}"
|
||||||
|
body="$( echo $body | sed 's/\/home\/runner\/work\/element-android\/element-android\//\`<br\/>\`/g')"
|
||||||
|
body="$( echo $body | sed 's/\/src\/main\/java\// 🔸 /g')"
|
||||||
|
body="$( echo $body | sed 's/im\/vector\/app\///g')"
|
||||||
|
body="$( echo $body | sed 's/im\/vector\/lib\/attachmentviewer\///g')"
|
||||||
|
body="$( echo $body | sed 's/im\/vector\/lib\/multipicker\///g')"
|
||||||
|
body="$( echo $body | sed 's/im\/vector\/lib\///g')"
|
||||||
|
body="$( echo $body | sed 's/org\/matrix\/android\/sdk\///g')"
|
||||||
|
body="$( echo $body | sed 's/\/src\/androidTest\/java\// 🔸 /g')"
|
||||||
|
fi
|
||||||
|
echo "::set-output name=body::$body"
|
||||||
|
- name: Find Comment
|
||||||
|
if: always()
|
||||||
|
uses: peter-evans/find-comment@v1
|
||||||
|
id: fc
|
||||||
|
with:
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
comment-author: 'github-actions[bot]'
|
||||||
|
body-includes: Ktlint Results
|
||||||
|
- name: Publish ktlint results to PR
|
||||||
|
if: always()
|
||||||
|
uses: peter-evans/create-or-update-comment@v1
|
||||||
|
with:
|
||||||
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
body: |
|
||||||
|
### Ktlint Results
|
||||||
|
|
||||||
# Lint for main module and all the other modules
|
${{ steps.get-comment-body.outputs.body }}
|
||||||
|
edit-mode: replace
|
||||||
|
|
||||||
|
# Lint for main module
|
||||||
android-lint:
|
android-lint:
|
||||||
name: Android Linter
|
name: Android Linter
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -74,7 +118,6 @@ jobs:
|
|||||||
run: ./gradlew clean lint${{ matrix.target }}Release --stacktrace
|
run: ./gradlew clean lint${{ matrix.target }}Release --stacktrace
|
||||||
- name: Upload ${{ matrix.target }} linting report
|
- name: Upload ${{ matrix.target }} linting report
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: always()
|
|
||||||
with:
|
with:
|
||||||
name: release-lint-report-${{ matrix.target }}
|
name: release-lint-report-${{ matrix.target }}
|
||||||
path: |
|
path: |
|
||||||
|
1
changelog.d/4864.misc
Normal file
1
changelog.d/4864.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix github actions ktlint reports and publish results on PR as comment
|
@ -208,4 +208,4 @@ public final class LiveDataTestObserver<T> implements Observer<T> {
|
|||||||
liveData.observeForever(observer);
|
liveData.observeForever(observer);
|
||||||
return observer;
|
return observer;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user