-
Notifications
You must be signed in to change notification settings - Fork 2.8k
68 lines (56 loc) · 2.45 KB
/
ci-e2e-cassandra.yml
File metadata and controls
68 lines (56 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright (c) 2026 The Jaeger Authors.
# SPDX-License-Identifier: Apache-2.0
# Integration tests for Cassandra storage backend, covering multiple Cassandra
# major versions, schema versions, and both manual and auto schema creation.
# direct: classic tests at the storage API layer, directly instantiating the storage implementation.
# e2e: multi-process E2E tests via the trace ingestion and query APIs.
name: CIT Cassandra
on:
workflow_call:
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
cassandra:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
storage_test: [direct, e2e]
create-schema: [manual, auto]
version:
- distribution: cassandra
major: 4.x
schema: v004
- distribution: cassandra
major: 5.x
schema: v004
exclude:
# Exclude direct as creating schema on startup is only available in e2e mode
- storage_test: direct
create-schema: auto
name: ${{ matrix.version.distribution }}-${{ matrix.version.major }} ${{ matrix.storage_test }} schema=${{ matrix.create-schema }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: ./.github/actions/setup-go
with:
go-version: 1.26.x
- name: Run cassandra integration tests
id: test-execution
run: bash scripts/e2e/cassandra.sh ${{ matrix.version.major }} ${{ matrix.version.schema }} ${{ matrix.storage_test }}
env:
SKIP_APPLY_SCHEMA: ${{ matrix.create-schema == 'auto' && true || false }}
- uses: ./.github/actions/verify-metrics-snapshot
if: matrix.storage_test == 'e2e'
with:
snapshot: metrics_snapshot_cassandra
artifact_key: metrics_snapshot_cassandras_${{ matrix.version.major }}_${{ matrix.version.schema }}_${{ matrix.storage_test }}_${{ matrix.create-schema }}
- name: Upload coverage to codecov
uses: ./.github/actions/upload-codecov
with:
files: cover.out
flag: cassandra-${{ matrix.version.major }}-${{ matrix.storage_test }}-${{ matrix.create-schema }}