Improve performance of incremental builds #511
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check if checksums are in sync | |
on: [push] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: 8BitJonny/gh-get-current-pr@3.0.0 | |
id: PR | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: generate checksums | |
run: | | |
./generate_checksum.sh | |
- name: check if git tree is clean | |
run: | | |
if [ -z "$(git status --porcelain)" ]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |
- uses: actions/github-script@v7 | |
continue-on-error: true | |
id: get_issue_number | |
with: | |
script: | | |
if (context.issue.number) { | |
// Return issue number if present | |
return context.issue.number; | |
} else { | |
// Otherwise return issue number from commit | |
return ( | |
await github.rest.repos.listPullRequestsAssociatedWithCommit({ | |
commit_sha: context.sha, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
}) | |
).data[0].number; | |
} | |
result-encoding: string | |
- name: Create or update comment | |
continue-on-error: true | |
if: failure() | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{steps.get_issue_number.outputs.result}} | |
body: | | |
Invalid checksums, please run `./generate_checksum.sh` | |