-
Notifications
You must be signed in to change notification settings - Fork 2.8k
43 lines (34 loc) · 1.42 KB
/
ci-e2e-query.yml
File metadata and controls
43 lines (34 loc) · 1.42 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
# Copyright (c) 2026 The Jaeger Authors.
# SPDX-License-Identifier: Apache-2.0
# E2E integration tests for a two-process deployment topology:
# - collector (config-remote-storage-backend.yaml): receives OTLP traces,
# writes to in-memory storage, exposes it via the remote_storage gRPC extension.
# - query (config-query.yaml): no ingestion pipeline, serves the query API
# by reading from the collector's remote_storage gRPC endpoint.
name: CIT Query
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:
query:
runs-on: ubuntu-latest
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: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version: 1.26.x
cache-dependency-path: ./go.sum
- name: Run Memory storage integration tests
run: |
STORAGE=query make jaeger-v2-storage-integration-test
- name: Upload coverage to codecov
uses: ./.github/actions/upload-codecov
with:
files: cover.out
flag: query