forked from vllm-project/semantic-router
-
Notifications
You must be signed in to change notification settings - Fork 0
141 lines (140 loc) · 4.71 KB
/
ci-changes.yml
File metadata and controls
141 lines (140 loc) · 4.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: CI Changes
on:
workflow_call:
outputs:
core:
value: ${{ jobs.filter.outputs.core }}
dashboard:
value: ${{ jobs.filter.outputs.dashboard }}
website:
value: ${{ jobs.filter.outputs.website }}
docs:
value: ${{ jobs.filter.outputs.docs }}
helm:
value: ${{ jobs.filter.outputs.helm }}
e2e:
value: ${{ jobs.filter.outputs.e2e }}
ci:
value: ${{ jobs.filter.outputs.ci }}
docker:
value: ${{ jobs.filter.outputs.docker }}
make:
value: ${{ jobs.filter.outputs.make }}
# Per-profile e2e change detection
e2e_istio:
value: ${{ jobs.filter.outputs.e2e_istio }}
e2e_ai_gateway:
value: ${{ jobs.filter.outputs.e2e_ai_gateway }}
e2e_aibrix:
value: ${{ jobs.filter.outputs.e2e_aibrix }}
e2e_dynamic_config:
value: ${{ jobs.filter.outputs.e2e_dynamic_config }}
e2e_llm_d:
value: ${{ jobs.filter.outputs.e2e_llm_d }}
e2e_routing_strategies:
value: ${{ jobs.filter.outputs.e2e_routing_strategies }}
e2e_production_stack:
value: ${{ jobs.filter.outputs.e2e_production_stack }}
e2e_common:
value: ${{ jobs.filter.outputs.e2e_common }}
jobs:
filter:
runs-on: ubuntu-latest
outputs:
core: ${{ steps.changes.outputs.core }}
dashboard: ${{ steps.changes.outputs.dashboard }}
website: ${{ steps.changes.outputs.website }}
docs: ${{ steps.changes.outputs.docs }}
helm: ${{ steps.changes.outputs.helm }}
e2e: ${{ steps.changes.outputs.e2e }}
ci: ${{ steps.changes.outputs.ci }}
docker: ${{ steps.changes.outputs.docker }}
make: ${{ steps.changes.outputs.make }}
# Per-profile e2e outputs
e2e_istio: ${{ steps.changes.outputs.e2e_istio }}
e2e_ai_gateway: ${{ steps.changes.outputs.e2e_ai_gateway }}
e2e_aibrix: ${{ steps.changes.outputs.e2e_aibrix }}
e2e_dynamic_config: ${{ steps.changes.outputs.e2e_dynamic_config }}
e2e_llm_d: ${{ steps.changes.outputs.e2e_llm_d }}
e2e_routing_strategies: ${{ steps.changes.outputs.e2e_routing_strategies }}
e2e_production_stack: ${{ steps.changes.outputs.e2e_production_stack }}
e2e_common: ${{ steps.changes.outputs.e2e_common }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: changes
uses: dorny/paths-filter@v3
with:
token: ${{ github.token }}
filters: |
core:
- 'src/**'
- 'candle-binding/**'
- 'bench/**'
- 'config/**'
- 'scripts/**'
- 'deploy/examples/**'
- 'tools/**'
- 'go.mod'
- 'go.sum'
- 'Cargo.toml'
- 'Cargo.lock'
- 'pyproject.toml'
- 'e2e/testing/llm-katan/**'
dashboard:
- 'dashboard/**'
website:
- 'website/**'
docs:
- 'docs/**'
- '**/*.md'
- '**/*.mdx'
helm:
- 'deploy/helm/**'
e2e:
- 'e2e/testing/**'
- 'e2e/**'
- 'scripts/quickstart.sh'
- 'deploy/docker-compose/**'
- 'deploy/kubernetes/**'
- 'deploy/kserve/**'
- 'deploy/openshift/**'
ci:
- '.github/workflows/**'
docker:
- 'tools/docker/Dockerfile*'
- 'docker/**'
- 'docker-compose*'
- 'deploy/docker-compose/**'
make:
- 'Makefile'
- 'tools/make/**'
# Per-profile e2e filters
e2e_istio:
- 'e2e/profiles/istio/**'
- 'deploy/kubernetes/istio/**'
e2e_ai_gateway:
- 'e2e/profiles/ai-gateway/**'
- 'deploy/kubernetes/ai-gateway/**'
e2e_aibrix:
- 'e2e/profiles/aibrix/**'
- 'deploy/kubernetes/aibrix/**'
e2e_dynamic_config:
- 'e2e/profiles/dynamic-config/**'
e2e_llm_d:
- 'e2e/profiles/llm-d/**'
- 'deploy/kubernetes/llmd-base/**'
e2e_routing_strategies:
- 'e2e/profiles/routing-strategies/**'
- 'deploy/kubernetes/routing-strategies/**'
e2e_production_stack:
- 'e2e/profiles/production-stack/**'
# Common e2e code that affects all profiles
e2e_common:
- 'e2e/pkg/**'
- 'e2e/cmd/**'
- 'e2e/testcases/**'
- 'e2e/*.go'
- 'e2e/go.mod'
- 'e2e/go.sum'