1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-06-02 20:43:04 +08:00
NeoNetwork/.github/workflows/test-your-pr.yml

76 lines
1.9 KiB
YAML
Raw Normal View History

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
outputs:
generate_roa: ${{ steps.generate_roa.outputs.base64 }}
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
- run: pip install -r scripts/requirements.txt
2020-07-21 10:35:53 +08:00
- run: |
success=true
scripts/generate-roa.sh 2> >(tee ~/buildjob.log >&2) || success=false
echo -n "base64=" >> $GITHUB_OUTPUT
base64 -w0 ~/buildjob.log >> $GITHUB_OUTPUT
${success}
shell: bash
id: generate_roa
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
comment_success:
needs: [build]
runs-on: ubuntu-20.04
if: ${{ always() && contains(needs.build.result, 'success') }}
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
if: ${{ always() && contains(needs.build.result, 'failure') }}
steps:
- shell: bash
run: |
echo ${{needs.build.outputs.generate_roa}} | base64 -d |tail > ~/buildjob_tail.log || echo 'internal error' > ~/buildjob_tail.log
- uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.COMMENT_GITHUB_TOKEN }}
filePath: ~/buildjob_tail.log
- run: false