E2E Tests #5528
Workflow file for this run
This file contains hidden or 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: E2E Tests | |
on: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: combined-cit-${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
badger: | |
uses: ./.github/workflows/ci-e2e-badger.yaml | |
cassandra: | |
uses: ./.github/workflows/ci-e2e-cassandra.yml | |
elasticsearch: | |
uses: ./.github/workflows/ci-e2e-elasticsearch.yml | |
grpc: | |
uses: ./.github/workflows/ci-e2e-grpc.yml | |
kafka: | |
uses: ./.github/workflows/ci-e2e-kafka.yml | |
memory: | |
uses: ./.github/workflows/ci-e2e-memory.yaml | |
opensearch: | |
uses: ./.github/workflows/ci-e2e-opensearch.yml | |
query: | |
uses: ./.github/workflows/ci-e2e-query.yml | |
clickhouse: | |
uses: ./.github/workflows/ci-e2e-clickhouse.yml | |
upload_pr_number: | |
name: Save and Upload PR Number as Artifact | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save PR number as artifact | |
if: github.event_name == 'pull_request' | |
run: echo "${{ github.event.number }}" > pr_number.txt | |
- name: Upload PR number artifact | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
with: | |
name: pr_number | |
path: pr_number.txt |