Skip to content

Nightly Extra E2E tests #217

Nightly Extra E2E tests

Nightly Extra E2E tests #217

name: Nightly Extra E2E tests
on:
workflow_dispatch:
inputs:
runs_on:
description: 'Runs on'
required: false
default: extra-release
type: choice
options:
- extra
- extra-release
schedule:
- cron: '0 16 * * *'
jobs:
benchmarks_e2e:
name: "Run benchmarks E2E Tests"
uses: ./.github/workflows/e2e-run.yml
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
suite-id: "benchmarks"
test-path: "tests/kafkatest/benchmarks"
storage-path: "/data/github-actions/reports"
runner: ${{ inputs.runs_on || 'extra' }}
connect_e2e_1:
name: "Run connect E2E Tests 1"
uses: ./.github/workflows/e2e-run.yml
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
suite-id: "connect1"
test-yaml: "tests/suites/connect_test_suite1.yml"
storage-path: "/data/github-actions/reports"
runner: ${{ inputs.runs_on || 'extra' }}
connect_e2e_2:
name: "Run connect E2E Tests 2"
uses: ./.github/workflows/e2e-run.yml
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
suite-id: "connect2"
test-yaml: "tests/suites/connect_test_suite2.yml"
storage-path: "/data/github-actions/reports"
runner: ${{ inputs.runs_on || 'extra' }}
connect_e2e_3:
name: "Run connect E2E Tests 3"
uses: ./.github/workflows/e2e-run.yml
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
suite-id: "connect3"
test-yaml: "tests/suites/connect_test_suite3.yml"
storage-path: "/data/github-actions/reports"
runner: ${{ inputs.runs_on || 'extra' }}
streams_e2e:
name: "Run streams E2E Tests"
uses: ./.github/workflows/e2e-run.yml
if: ${{ github.repository_owner == 'AutoMQ' }}
with:
suite-id: "streams"
test-path: "tests/kafkatest/tests/streams"
storage-path: "/data/github-actions/reports"
runner: ${{ inputs.runs_on || 'extra' }}
e2e_summary:
name: "E2E Tests Summary"
runs-on: ${{ inputs.runs_on || 'extra' }}
if: ${{ always() && github.repository_owner == 'AutoMQ' }}
needs: [ benchmarks_e2e, connect_e2e_1, connect_e2e_2, connect_e2e_3, streams_e2e ]
steps:
- name: Report results
run: python3 tests/report_e2e_results.py
env:
WEB_HOOK_URL: ${{ secrets.E2E_REPORT_WEB_HOOK_URL }}
SHOW_RESULTS_URL: ${{ secrets.E2E_REPORT_SHOW_RESULTS_URL2 }}
STORAGE_PATH: "/data/github-actions/reports"
REPORT_TITLE_PREFIX: "Extra"