Skip to content

[FSTORE-1684] Call Loadtest Workflow to enable automatic E2E #465

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: End-to-End Workflow Tests

on: pull_request

jobs:
e2e_workflows:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Get the short sha
id: short_sha
run: |
export SHORT_SHA=$(git rev-parse --short "$GITHUB_SHA")
echo "SHORT_SHA=$SHORT_SHA" >> $GITHUB_ENV
echo "Hello"

- name: Calling Loadtest Workflow
uses: logicalclocks/loadtest/.github/workflows/e2e_small.yaml@main
with:
hopsworks_domain: 'stagingmain.devnet.hops.works'
hopsworks_api_branch: ${{ github.event.pull_request.head.ref}}
loadtest_branch: ${{ github.event.pull_request.head.ref || 'main'}}
short_sha: ${{ env.SHORT_SHA }}






Loading