2020-05-01 17:45:30 +08:00
|
|
|
name: Test Your PR
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2020-07-21 00:40:22 +08:00
|
|
|
branches: [master]
|
2020-05-01 17:45:30 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Generate ROA
|
2020-06-04 11:53:59 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-01 17:45:30 +08:00
|
|
|
|
|
|
|
steps:
|
2020-07-23 16:53:37 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-23 19:00:02 +08:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2020-07-23 16:53:37 +08:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: NeoCloud/NeoNetwork-ROA
|
|
|
|
path: generated
|
|
|
|
|
2020-07-21 01:58:59 +08:00
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
2020-07-23 16:54:34 +08:00
|
|
|
python-version: 3.x
|
|
|
|
architecture: x64
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2023-12-05 19:08:54 +08:00
|
|
|
- shell: bash
|
|
|
|
run: |
|
|
|
|
env PYTHONUNBUFFERED=1 pip install -r scripts/requirements.txt 2>(tee -a ~/buildjob.log >&2)
|
2020-07-21 10:35:53 +08:00
|
|
|
|
2023-12-05 19:08:54 +08:00
|
|
|
- shell: bash
|
|
|
|
run: |
|
|
|
|
env PYTHONUNBUFFERED=1 scripts/generate-roa.sh 2>(tee -a ~/buildjob.log >&2)
|
2020-07-21 01:23:09 +08:00
|
|
|
|
2020-07-26 20:54:31 +08:00
|
|
|
- run: git -C generated diff README.md
|
2020-07-26 19:37:09 +08:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: generated
|
|
|
|
path: generated
|
2023-12-05 18:17:04 +08:00
|
|
|
|
|
|
|
comment_success:
|
|
|
|
needs: [build]
|
|
|
|
runs-on: ubuntu-20.04
|
2023-12-05 19:08:54 +08:00
|
|
|
if: ${{ always() && contains(needs.build.result, 'success') }}
|
2023-12-05 18:17:04 +08:00
|
|
|
steps:
|
|
|
|
- uses: thollander/actions-comment-pull-request@v2
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.COMMENT_GITHUB_TOKEN }}
|
|
|
|
message: |
|
|
|
|
Congratulations! Your pull request passed the check.
|
|
|
|
|
|
|
|
comment_failure:
|
|
|
|
needs: [build]
|
|
|
|
runs-on: ubuntu-20.04
|
2023-12-05 19:08:54 +08:00
|
|
|
if: ${{ always() && contains(needs.build.result, 'failure') }}
|
2023-12-05 18:17:04 +08:00
|
|
|
steps:
|
2023-12-05 19:08:54 +08:00
|
|
|
- shell: bash
|
|
|
|
run: |
|
|
|
|
tail ~/buildjob.log > ~/buildjob_tail.log
|
2023-12-05 18:17:04 +08:00
|
|
|
|
|
|
|
- uses: thollander/actions-comment-pull-request@v2
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.COMMENT_GITHUB_TOKEN }}
|
|
|
|
filePath: ~/buildjob_tail.log
|