8 files changed +57
-43
lines changed Original file line number Diff line number Diff line change
1
+ name : E2E Tests
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+
7
+ pull_request :
8
+ branches : [main]
9
+
10
+ concurrency :
11
+ group : combined-cit-${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
+ cancel-in-progress : true
13
+
14
+ permissions :
15
+ contents : read
16
+
17
+ jobs :
18
+ badger :
19
+ uses : ./.github/workflows/ci-e2e-badger.yaml
20
+
21
+ cassandra :
22
+ uses : ./.github/workflows/ci-e2e-cassandra.yml
23
+
24
+ elasticsearch :
25
+ uses : ./.github/workflows/ci-e2e-elasticsearch.yml
26
+
27
+ grpc :
28
+ uses : ./.github/workflows/ci-e2e-grpc.yml
29
+
30
+ kafka :
31
+ uses : ./.github/workflows/ci-e2e-kafka.yml
32
+
33
+ memory :
34
+ uses : ./.github/workflows/ci-e2e-memory.yaml
35
+
36
+ opensearch :
37
+ uses : ./.github/workflows/ci-e2e-opensearch.yml
38
+
39
+
40
+
41
+
42
+
Original file line number Diff line number Diff line change 1
1
name : CIT Badger
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-badger- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
Original file line number Diff line number Diff line change 1
1
name : CIT Cassandra
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-cassandra- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
Original file line number Diff line number Diff line change 1
1
name : CIT Elasticsearch
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-elasticsearch- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
Original file line number Diff line number Diff line change 1
1
name : CIT gRPC
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-grpc- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
Original file line number Diff line number Diff line change 1
1
name : CIT Kafka
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-kafka- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
22
18
fail-fast : false
23
19
matrix :
24
20
jaeger-version : [v1, v2] # Adjust if there are specific versions of Jaeger
25
- name : Kafka Integration Tests ${{ matrix.jaeger-version }}
21
+ name : kafka ${{ matrix.jaeger-version }}
26
22
steps :
27
23
- name : Harden Runner
28
24
uses : step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
Original file line number Diff line number Diff line change 1
1
name : CIT Memory
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-memory- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
Original file line number Diff line number Diff line change 1
1
name : CIT OpenSearch
2
2
3
3
on :
4
- push :
5
- branches : [main]
6
-
7
- pull_request :
8
- branches : [main]
4
+ workflow_call :
9
5
10
6
concurrency :
11
- group : ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
7
+ group : cit-opensearch- ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
12
8
cancel-in-progress : true
13
9
14
10
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
0 commit comments