Add Physical Design Report for CI. #63
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: Test Report | |
on: [pull_request] | |
env: | |
USER: runner | |
# Cancel the current workflow when new commit pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
always-success: | |
name: "I will always success" | |
runs-on: [self-hosted, linux, nixos] | |
steps: | |
- name: "Success" | |
run: echo "FOO BAR BAZ" | |
get-report: | |
name: "Getting report" | |
if: ${{ success() }} | |
runs-on: [self-hosted, linux, nixos] | |
needs: [always-success] | |
steps: | |
- name: "Fetch report" | |
run: | | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.T1_INHOUSE_PAT }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
"${{ secrets.T1_INHOUSE_URL }}" \ | |
-d '{"event_type":"ci_success","client_payload":{"commit_sha": "${{ github.event.pull_request.head.sha }}","pr_id": "${{ github.event.pull_request.number }}" }}' |