-
Notifications
You must be signed in to change notification settings - Fork 91
414 lines (362 loc) · 16.2 KB
/
Copy pathci-sync.yml
File metadata and controls
414 lines (362 loc) · 16.2 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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
name: CI - Cross-Repo Sync
on:
workflow_call:
jobs:
surface-sync:
name: Shared Surface Sync
runs-on: ubuntu-latest
steps:
- name: Check for cross-repo token
id: token-check
run: |
if [ -z "$TOKEN" ]; then
echo "::warning::CROSS_REPO_TOKEN is not set. Skipping sync check (expected on fork PRs)."
echo "skip=true" >> "$GITHUB_OUTPUT"
else
echo "skip=false" >> "$GITHUB_OUTPUT"
fi
env:
TOKEN: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Checkout editor repo
if: steps.token-check.outputs.skip == 'false'
uses: actions/checkout@v4
with:
path: editor
- name: Check for shared surface changes
if: steps.token-check.outputs.skip == 'false'
id: filter
run: |
cd editor
git fetch origin "${{ github.event.pull_request.base.ref }}" --depth=1
CHANGED=$(git diff --name-only FETCH_HEAD HEAD)
if echo "$CHANGED" | grep -qE '^(src/frontend/|src/middleware/shared/|src/backend/shared/|src/__architecture__/|resources/sources/(arduino|Baremetal|hal)/)'; then
echo "shared=true" >> "$GITHUB_OUTPUT"
else
echo "shared=false" >> "$GITHUB_OUTPUT"
echo "No shared surface changes detected. Skipping sync check."
fi
- name: Checkout web repo (target branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.event.pull_request.base.ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-target
- name: Checkout web repo (main fallback)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true' && steps.checkout-web-target.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: main
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Warn about branch fallback
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true' && steps.checkout-web-target.outcome == 'failure'
run: |
echo "::warning::Web repo does not have branch '${{ github.event.pull_request.base.ref }}'. Fell back to 'main'."
- name: Compare surfaces against target branch
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true'
id: compare-target
run: |
set +e
RESULT=$(python3 editor/scripts/compare-surfaces.py \
--web-root web/src \
--editor-root editor/src \
--github-annotations 2>&1 1>/tmp/compare-result.json)
EXIT_CODE=$?
set -e
# Forward annotations to stderr
if [ -n "$RESULT" ]; then
echo "$RESULT" >&2
fi
MATCH=$(python3 -c "import json; print(json.load(open('/tmp/compare-result.json'))['match'])")
echo "match=$MATCH" >> "$GITHUB_OUTPUT"
if [ "$MATCH" = "True" ]; then
echo "All shared surfaces match the web's ${{ github.event.pull_request.base.ref }} branch."
else
DIFF_COUNT=$(python3 -c "import json; print(json.load(open('/tmp/compare-result.json'))['total_diffs'])")
echo "Found $DIFF_COUNT difference(s) against web's ${{ github.event.pull_request.base.ref }} branch."
echo "Checking open web PRs for a matching sync..."
fi
- name: Find matching web PRs
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true' && steps.compare-target.outputs.match == 'False'
id: find-prs
env:
GH_TOKEN: ${{ secrets.CROSS_REPO_TOKEN }}
run: |
BASE_BRANCH="${{ github.event.pull_request.base.ref }}"
PR_JSON=$(gh pr list \
--repo Autonomy-Logic/openplc-web \
--base "$BASE_BRANCH" \
--state open \
--limit 10 \
--json number,headRefName,title)
PR_COUNT=$(echo "$PR_JSON" | python3 -c "import json,sys; print(len(json.load(sys.stdin)))")
echo "pr_count=$PR_COUNT" >> "$GITHUB_OUTPUT"
# Save PR list for next step
echo "$PR_JSON" > /tmp/web-prs.json
if [ "$PR_COUNT" = "0" ]; then
echo "No open web PRs targeting '$BASE_BRANCH'."
else
echo "Found $PR_COUNT open web PR(s) targeting '$BASE_BRANCH'."
fi
- name: Check web PRs for sync
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true' && steps.compare-target.outputs.match == 'False' && steps.find-prs.outputs.pr_count != '0'
id: check-prs
run: |
PR_JSON=$(cat /tmp/web-prs.json)
MATCHED_PR=""
for PR_NUMBER in $(echo "$PR_JSON" | python3 -c "import json,sys; [print(p['number']) for p in json.load(sys.stdin)]"); do
TITLE=$(echo "$PR_JSON" | python3 -c "import json,sys; prs=json.load(sys.stdin); [print(p['title']) for p in prs if p['number']==$PR_NUMBER]")
BRANCH=$(echo "$PR_JSON" | python3 -c "import json,sys; prs=json.load(sys.stdin); [print(p['headRefName']) for p in prs if p['number']==$PR_NUMBER]")
echo "::group::Checking web PR #$PR_NUMBER: $TITLE ($BRANCH)"
# Fetch the PR head using refs/pull/N/head (works for forks too)
if ! git -C web fetch origin "refs/pull/$PR_NUMBER/head" 2>/dev/null; then
echo "::warning::Could not fetch PR #$PR_NUMBER head"
echo "::endgroup::"
continue
fi
git -C web checkout FETCH_HEAD --quiet
# Run comparison (suppress annotations, just check match)
set +e
RESULT=$(python3 editor/scripts/compare-surfaces.py \
--web-root web/src \
--editor-root editor/src \
2>/dev/null)
set -e
IS_MATCH=$(echo "$RESULT" | python3 -c "import json,sys; print(json.load(sys.stdin)['match'])")
if [ "$IS_MATCH" = "True" ]; then
echo "Surfaces MATCH with web PR #$PR_NUMBER ($BRANCH)"
echo "matched_pr=$PR_NUMBER" >> "$GITHUB_OUTPUT"
echo "matched_title=$TITLE" >> "$GITHUB_OUTPUT"
echo "::endgroup::"
exit 0
else
DIFF_COUNT=$(echo "$RESULT" | python3 -c "import json,sys; print(json.load(sys.stdin)['total_diffs'])")
echo "Still $DIFF_COUNT difference(s) with PR #$PR_NUMBER"
fi
echo "::endgroup::"
done
- name: Report result
if: always() && steps.token-check.outputs.skip == 'false' && steps.filter.outputs.shared == 'true'
run: |
MATCH="${{ steps.compare-target.outputs.match }}"
MATCHED_PR="${{ steps.check-prs.outputs.matched_pr }}"
MATCHED_TITLE="${{ steps.check-prs.outputs.matched_title }}"
if [ "$MATCH" = "True" ]; then
echo "Shared surfaces are in sync with web's ${{ github.event.pull_request.base.ref }} branch."
exit 0
elif [ -n "$MATCHED_PR" ]; then
echo "::warning::Surfaces will be in sync once web PR #${MATCHED_PR} is merged: ${MATCHED_TITLE}"
echo "Shared surfaces match web PR #${MATCHED_PR}."
exit 0
else
echo "::error::Shared surfaces are NOT in sync with openplc-web."
echo ""
echo "Differing files:"
python3 -c "
import json
with open('/tmp/compare-result.json') as f:
data = json.load(f)
for surface, info in data['surfaces'].items():
if not info['match']:
for d in info['diffs']:
print(f\" {d['reason']}: src/{d['file']}\")
"
exit 1
fi
deps-sync:
name: Shared Dependencies Sync
runs-on: ubuntu-latest
steps:
- name: Check for cross-repo token
id: token-check
run: |
if [ -z "$TOKEN" ]; then
echo "::warning::CROSS_REPO_TOKEN is not set. Skipping sync check (expected on fork PRs)."
echo "skip=true" >> "$GITHUB_OUTPUT"
else
echo "skip=false" >> "$GITHUB_OUTPUT"
fi
env:
TOKEN: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Checkout editor repo
if: steps.token-check.outputs.skip == 'false'
uses: actions/checkout@v4
with:
path: editor
- name: Check for package.json changes
if: steps.token-check.outputs.skip == 'false'
id: filter
run: |
cd editor
git fetch origin "${{ github.event.pull_request.base.ref }}" --depth=1
CHANGED=$(git diff --name-only FETCH_HEAD HEAD)
if echo "$CHANGED" | grep -qE '^package\.json$'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "changed=false" >> "$GITHUB_OUTPUT"
echo "No package.json changes detected. Skipping dependency sync check."
fi
- name: Checkout web repo (head branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.head_ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-head
- name: Checkout web repo (base branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.event.pull_request.base.ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-base
- name: Checkout web repo (main fallback)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure' && steps.checkout-web-base.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: main
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Compare shared dependencies
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
run: python3 editor/scripts/compare-dependencies.py --web-root web --editor-root editor
script-sync:
name: Comparison Script Sync
runs-on: ubuntu-latest
steps:
- name: Check for cross-repo token
id: token-check
run: |
if [ -z "$TOKEN" ]; then
echo "::warning::CROSS_REPO_TOKEN is not set. Skipping sync check (expected on fork PRs)."
echo "skip=true" >> "$GITHUB_OUTPUT"
else
echo "skip=false" >> "$GITHUB_OUTPUT"
fi
env:
TOKEN: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Checkout editor repo
if: steps.token-check.outputs.skip == 'false'
uses: actions/checkout@v4
with:
path: editor
- name: Check for compare script changes
if: steps.token-check.outputs.skip == 'false'
id: filter
run: |
cd editor
git fetch origin "${{ github.event.pull_request.base.ref }}" --depth=1
CHANGED=$(git diff --name-only FETCH_HEAD HEAD)
if echo "$CHANGED" | grep -qE '^scripts/compare-surfaces\.py$'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "changed=false" >> "$GITHUB_OUTPUT"
echo "No compare script changes detected. Skipping script sync check."
fi
- name: Checkout web repo (head branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.head_ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-head
- name: Checkout web repo (base branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.event.pull_request.base.ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-base
- name: Checkout web repo (main fallback)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure' && steps.checkout-web-base.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: main
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Compare SURFACES definitions
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
run: python3 editor/scripts/compare-surface-definitions.py --web-root web --editor-root editor
tooling-sync:
name: Tooling Configuration Sync
runs-on: ubuntu-latest
steps:
- name: Check for cross-repo token
id: token-check
run: |
if [ -z "$TOKEN" ]; then
echo "::warning::CROSS_REPO_TOKEN is not set. Skipping sync check (expected on fork PRs)."
echo "skip=true" >> "$GITHUB_OUTPUT"
else
echo "skip=false" >> "$GITHUB_OUTPUT"
fi
env:
TOKEN: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Checkout editor repo
if: steps.token-check.outputs.skip == 'false'
uses: actions/checkout@v4
with:
path: editor
- name: Check for tooling changes
if: steps.token-check.outputs.skip == 'false'
id: filter
run: |
cd editor
git fetch origin "${{ github.event.pull_request.base.ref }}" --depth=1
CHANGED=$(git diff --name-only FETCH_HEAD HEAD)
if echo "$CHANGED" | grep -qE '^(\.prettierrc$|eslint\.config\.|tsconfig|scripts/)'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "changed=false" >> "$GITHUB_OUTPUT"
echo "No tooling changes detected. Skipping tooling sync check."
fi
- name: Checkout web repo (head branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.head_ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-head
- name: Checkout web repo (base branch)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: ${{ github.event.pull_request.base.ref }}
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
continue-on-error: true
id: checkout-web-base
- name: Checkout web repo (main fallback)
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true' && steps.checkout-web-head.outcome == 'failure' && steps.checkout-web-base.outcome == 'failure'
uses: actions/checkout@v4
with:
repository: Autonomy-Logic/openplc-web
ref: main
path: web
token: ${{ secrets.CROSS_REPO_TOKEN }}
- name: Compare tooling configuration
if: steps.token-check.outputs.skip == 'false' && steps.filter.outputs.changed == 'true'
run: python3 editor/scripts/compare-tooling.py --web-root web --editor-root editor --github-annotations