-
Notifications
You must be signed in to change notification settings - Fork 722
220 lines (200 loc) · 7.01 KB
/
test_behavior.yml
File metadata and controls
220 lines (200 loc) · 7.01 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Behavior Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
inputs:
pr_number:
description: "Upstream PR number (for mirrored runs)"
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
plan:
runs-on: ubuntu-latest
outputs:
plan: ${{ steps.plan.outputs.plan }}
steps:
- uses: actions/checkout@v6
with:
# fetch depth set to 0 to make sure we have correct diff result.
fetch-depth: 0
- name: Plan
id: plan
run: |
event_name="${{ github.event_name }}"
repository="${{ github.repository }}"
files_changed=""
has_secrets="false"
is_push="false"
# Handle event-specific logic
if [ "$event_name" == "push" ]; then
if [ "$repository" == "apache/opendal" ]; then
is_push="true"
has_secrets="true"
fi
elif [ "$event_name" == "pull_request" ]; then
pr_head_repo_fork="${{ github.event.pull_request.head.repo.fork }}"
# Only expose secrets for main repo and non-dependabot runs to mitigate security risks
if [ "$pr_head_repo_fork" != "true" ] && [ "${{ github.actor }}" != "dependabot[bot]" ]; then
has_secrets="true"
fi
files_changed=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})
echo "Files changed:"
echo "$files_changed"
elif [ "$event_name" == "workflow_dispatch" ]; then
# Mirror runs are explicitly triggered by maintainers; allow secrets.
has_secrets="true"
# Compare against main to infer affected components.
git fetch --no-tags --prune --depth=1 origin main
files_changed=$(git diff --name-only origin/main HEAD)
echo "Files changed (main..HEAD):"
echo "$files_changed"
fi
# Export variables
export GITHUB_HAS_SECRETS=$has_secrets
export GITHUB_IS_PUSH=$is_push
# Run the workflow planner script
PLAN=$(./.github/scripts/test_behavior/plan.py $files_changed)
echo "Plan:"
echo "$PLAN" | jq .
echo "plan=$PLAN" >> $GITHUB_OUTPUT
test_core:
name: core / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.core
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).core }}
uses: ./.github/workflows/test_behavior_core.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_java:
name: binding_java / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_java
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_java }}
uses: ./.github/workflows/test_behavior_binding_java.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_python:
name: binding_python / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_python
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_python }}
uses: ./.github/workflows/test_behavior_binding_python.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_nodejs:
name: binding_nodejs / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_nodejs
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_nodejs }}
uses: ./.github/workflows/test_behavior_binding_nodejs.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_go:
name: binding_go / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_go
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_go }}
uses: ./.github/workflows/test_behavior_binding_go.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_c:
name: binding_c / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_c
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_c }}
uses: ./.github/workflows/test_behavior_binding_c.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_cpp:
name: binding_cpp / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_cpp
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_cpp }}
uses: ./.github/workflows/test_behavior_binding_cpp.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_binding_dotnet:
name: binding_dotnet / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.binding_dotnet
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).binding_dotnet }}
uses: ./.github/workflows/test_behavior_binding_dotnet.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}
test_integration_object_store:
name: integration_object_store / ${{ matrix.os }}
needs: [ plan ]
if: fromJson(needs.plan.outputs.plan).components.integration_object_store
secrets: inherit
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.plan.outputs.plan).integration_object_store }}
uses: ./.github/workflows/test_behavior_integration_object_store.yml
with:
os: ${{ matrix.os }}
cases: ${{ toJson(matrix.cases) }}