forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96b712b
commit e522878
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: Check Symbols | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Build"] | ||
types: | ||
- requested | ||
- completed | ||
|
||
jobs: | ||
pending: | ||
if: | | ||
github.event.action == 'requested' && | ||
github.event.workflow_run.event == 'pull_request' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: commit status | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
for (const pr of context.payload.workflow_run.pull_requests) { | ||
if (pr.base.repo.url == context.payload.repository.url) { | ||
github.rest.repos.createCommitStatus({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
sha: pr.head.sha, | ||
context: 'Check Symbols', | ||
state: 'pending', | ||
description: 'Waiting for build finish' | ||
}); | ||
} | ||
} | ||
check: | ||
if: | | ||
github.event.action == 'completed' && | ||
github.event.workflow_run.event == 'pull_request' && | ||
github.event.workflow_run.conclusion == 'success' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: flutter-tizen/tizen_allowlist | ||
token: ${{ secrets.TIZENAPI_TOKEN }} | ||
path: tizen_allowlist | ||
|
||
- name: download artifacts | ||
uses: TizenAPI/tizenfx-build-actions/download-workflow-artifacts@master | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
name: tizen-arm-release | ||
path: artifacts | ||
|
||
- name: check symbols | ||
env: | ||
ALLOWLIST: tizen_allowlist/4.0.0_native_whitelist_wearable_v12.txt | ||
run: | | ||
python ci/docker/tizen/tools/check-symbol.py --allowlist=$ALLOWLIST \ | ||
artifacts/libflutter_engine.so \ | ||
artifacts/libflutter_tizen_wearable.so | ||
- name: commit success status | ||
if: ${{ success() }} | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
for (const pr of context.payload.workflow_run.pull_requests) { | ||
if (pr.base.repo.url == context.payload.repository.url) { | ||
github.rest.repos.createCommitStatus({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
sha: pr.head.sha, | ||
context: "Check Symbols", | ||
state: 'success', | ||
description: 'All symbols are valid' | ||
}); | ||
} | ||
} | ||
- name: commit failure status | ||
if: ${{ failure() }} | ||
uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
for (const pr of context.payload.workflow_run.pull_requests) { | ||
if (pr.base.repo.url == context.payload.repository.url) { | ||
github.rest.repos.createCommitStatus({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
sha: pr.head.sha, | ||
context: "Check Symbols", | ||
state: 'failure', | ||
description: 'Failed in checking symbols', | ||
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}', | ||
}); | ||
} | ||
} |
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