50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
|
name: Assemble
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
assemble-debug:
|
||
|
name: Assemble debug variant
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/cache@v2
|
||
|
with:
|
||
|
path: |
|
||
|
~/.gradle/caches
|
||
|
~/.gradle/wrapper
|
||
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-gradle-
|
||
|
|
||
|
- uses: actions/setup-java@v2
|
||
|
with:
|
||
|
distribution: 'adopt'
|
||
|
java-version: '11'
|
||
|
|
||
|
- name: Check release size
|
||
|
run: |
|
||
|
echo "::set-output name=APK_SIZE::$(./tools/check-size.sh | tail -1 | cut -d ',' -f2-)"
|
||
|
id: size
|
||
|
|
||
|
- name: Find Comment
|
||
|
uses: peter-evans/find-comment@v1
|
||
|
id: fc
|
||
|
with:
|
||
|
issue-number: ${{ github.event.pull_request.number }}
|
||
|
comment-author: 'github-actions[bot]'
|
||
|
body-includes: APK Size
|
||
|
- name: Publish size to PR
|
||
|
uses: peter-evans/create-or-update-comment@v1
|
||
|
with:
|
||
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
||
|
issue-number: ${{ github.event.pull_request.number }}
|
||
|
body: |
|
||
|
APK Size: ${{ steps.size.outputs.APK_SIZE }}
|
||
|
edit-mode: replace
|