Skip to content

Commit

Permalink
chore: trigger postgres-config-server tests (#156)
Browse files Browse the repository at this point in the history
<!-- The PR description should answer 2 (maybe 3) important questions:
-->

### What

On merges to `main`, trigger these tests:
https://github.com/hasura/v3-e2e-testing/blob/main/.github/workflows/cargo-test-postgres-config-server.yaml#L1

### How

<!-- How is it trying to accomplish it (what are the implementation
steps)? -->
  • Loading branch information
danieljharvey authored Nov 7, 2023
1 parent cea19a1 commit 0f46253
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fi
echo "hash=$(git rev-parse --short=9 "$GITHUB_SHA")" >> $GITHUB_OUTPUT
- name: Dispatch E2E tests
- name: Dispatch Postgres E2E tests
uses: aurelien-baudet/workflow-dispatch@v2
id: workflow_dispatch
with:
Expand All @@ -37,6 +37,16 @@ jobs:
token: ${{ secrets.E2E_WORKFLOW_PAT }}
workflow: "cargo test postgres"

- name: Dispatch Postgres Config Server E2E tests
uses: aurelien-baudet/workflow-dispatch@v2
id: workflow_dispatch
with:
inputs: '{ "connector": "${{ steps.short-git-hash.outputs.hash }}" }'
repo: hasura/v3-e2e-testing
ref: main
token: ${{ secrets.E2E_WORKFLOW_PAT }}
workflow: "cargo test postgres-config-server"

- name: Report failures
if: always() && github.ref == 'refs/heads/main'
uses: ravsamhq/notify-slack-action@v2
Expand Down

1 comment on commit 0f46253

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Component benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 0f46253 Previous: a0a333b Ratio
select-where - request time - (query + acquisition) 8.674363186035777 ms 3.688033386960896 ms 2.35

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.