Skip to content

Commit

Permalink
Merge pull request #7349 from dolthub/db/fix
Browse files Browse the repository at this point in the history
[no-release-notes] /.github/workflows/pull-report.yamlL: fix print correctness info
  • Loading branch information
coffeegoddd authored Jan 17, 2024
2 parents c01f8d8 + f67c502 commit ae93693
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pull-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ jobs:
aws-region: us-west-2
- name: Print Correctness Info
run: |
echo "correctness info: $INFO"
echo "correctness info: is_regression: $IS_REGRESSION"
echo "correctness info: correctness_percentage: $CORRECTNESS_PERCENTAGE"
echo "correctness info: branch_ref: $BRANCH_REF"
env:
INFO: ${{ github.event.client_payload.correctness_info }}
IS_REGRESSION: ${{ github.event.client_payload.correctness_info.is_regression }}
CORRECTNESS_PERCENTAGE: ${{ github.event.client_payload.correctness_info.correctness_percentage }}
BRANCH_REF: ${{ github.event.client_payload.correctness_info.branch_ref }}
- name: Get benchmark/correctness results
id: get-results
run: aws s3api get-object --bucket="$BUCKET" --key="$KEY" results.log
Expand Down

0 comments on commit ae93693

Please sign in to comment.