Skip to content

Commit f891ff1

Browse files
committed
orchestrator batch push
1 parent a0ae40d commit f891ff1

File tree

897 files changed

+1772
-42135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

897 files changed

+1772
-42135
lines changed

.github/workflows/test-0xffff.yml

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ jobs:
281281
},
282282
"run": {
283283
"id": "${{ github.run_id }}",
284-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
284+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
285285
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
286286
"status": "${{ steps.summary.outputs.overall_status }}",
287287
"runner": {
@@ -344,55 +344,6 @@ jobs:
344344
path: test-results/0xffff.json
345345
retention-days: 90
346346

347-
- name: Commit test results to repository
348-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
349-
run: |
350-
git config --global user.name 'github-actions[bot]'
351-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
352-
353-
mkdir -p data/test-results
354-
cp test-results/0xffff.json data/test-results/0xffff.json
355-
356-
git add data/test-results/0xffff.json
357-
358-
if ! git diff --staged --quiet; then
359-
git commit -m "Update 0xffff test results [skip ci]"
360-
361-
# Pull with rebase and push, retry up to 20 times
362-
PUSH_SUCCESS=false
363-
for i in {1..20}; do
364-
if git pull --rebase origin ${{ github.ref_name }}; then
365-
# Rebase succeeded, try to push
366-
if git push; then
367-
echo "Successfully pushed test results"
368-
PUSH_SUCCESS=true
369-
break
370-
fi
371-
else
372-
# Rebase failed, likely due to conflict
373-
echo "Rebase failed, resolving conflicts..."
374-
375-
# Accept our version of the file (the new test results)
376-
git checkout --ours data/test-results/0xffff.json
377-
git add data/test-results/0xffff.json
378-
379-
# Continue the rebase
380-
git rebase --continue || true
381-
fi
382-
383-
# Wait before retry
384-
echo "Retry attempt $i of 20..."
385-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
386-
done
387-
388-
if [ "$PUSH_SUCCESS" = false ]; then
389-
echo "❌ Error: Failed to push test results after 20 attempts."
390-
exit 1
391-
fi
392-
else
393-
echo "No changes to commit"
394-
fi
395-
396347
- name: Create test summary
397348
if: always()
398349
run: |

.github/workflows/test-5G-RAL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
},
6464
"run": {
6565
"id": "${{ github.run_id }}",
66-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
66+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
6767
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
6868
"status": "${{ steps.summary.outputs.overall_status }}",
6969
"runner": {

.github/workflows/test-7-zip.yml

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
},
289289
"run": {
290290
"id": "${{ github.run_id }}",
291-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
291+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
292292
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
293293
"status": "${{ steps.summary.outputs.overall_status }}",
294294
"runner": {
@@ -351,55 +351,6 @@ jobs:
351351
path: test-results/7-zip.json
352352
retention-days: 90
353353

354-
- name: Commit test results to repository
355-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
356-
run: |
357-
git config --global user.name 'github-actions[bot]'
358-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
359-
360-
mkdir -p data/test-results
361-
cp test-results/7-zip.json data/test-results/7-zip.json
362-
363-
git add data/test-results/7-zip.json
364-
365-
if ! git diff --staged --quiet; then
366-
git commit -m "Update 7-zip test results [skip ci]"
367-
368-
# Pull with rebase and push, retry up to 20 times
369-
PUSH_SUCCESS=false
370-
for i in {1..20}; do
371-
if git pull --rebase origin ${{ github.ref_name }}; then
372-
# Rebase succeeded, try to push
373-
if git push; then
374-
echo "Successfully pushed test results"
375-
PUSH_SUCCESS=true
376-
break
377-
fi
378-
else
379-
# Rebase failed, likely due to conflict
380-
echo "Rebase failed, resolving conflicts..."
381-
382-
# Accept our version of the file (the new test results)
383-
git checkout --ours data/test-results/7-zip.json
384-
git add data/test-results/7-zip.json
385-
386-
# Continue the rebase
387-
git rebase --continue || true
388-
fi
389-
390-
# Wait before retry
391-
echo "Retry attempt $i of 20..."
392-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
393-
done
394-
395-
if [ "$PUSH_SUCCESS" = false ]; then
396-
echo "❌ Error: Failed to push test results after 20 attempts."
397-
exit 1
398-
fi
399-
else
400-
echo "No changes to commit"
401-
fi
402-
403354
- name: Create test summary
404355
if: always()
405356
run: |

.github/workflows/test-AvxToNeon.yml

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249
},
250250
"run": {
251251
"id": "${{ github.run_id }}",
252-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
252+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
253253
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
254254
"status": "${{ steps.summary.outputs.overall_status }}",
255255
"runner": {
@@ -308,43 +308,6 @@ jobs:
308308
path: test-results/AvxToNeon.json
309309
retention-days: 90
310310

311-
- name: Commit test results to repository
312-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
313-
run: |
314-
git config --global user.name 'github-actions[bot]'
315-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
316-
317-
mkdir -p data/test-results
318-
cp test-results/AvxToNeon.json data/test-results/AvxToNeon.json
319-
320-
git add data/test-results/AvxToNeon.json
321-
322-
if ! git diff --staged --quiet; then
323-
git commit -m "Update AvxToNeon test results [skip ci]"
324-
for i in {1..20}; do
325-
if git pull --rebase origin ${{ github.ref_name }}; then
326-
if git push; then
327-
echo "Successfully pushed test results"
328-
PUSH_SUCCESS=true
329-
break
330-
fi
331-
else
332-
echo "Rebase failed, resolving conflicts..."
333-
git checkout --ours data/test-results/AvxToNeon.json
334-
git add data/test-results/AvxToNeon.json
335-
git rebase --continue || true
336-
fi
337-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
338-
done
339-
340-
if [ "$PUSH_SUCCESS" = false ]; then
341-
echo "❌ Error: Failed to push test results after 20 attempts."
342-
exit 1
343-
fi
344-
else
345-
echo "No changes to commit"
346-
fi
347-
348311
- name: Create test summary
349312
if: always()
350313
run: |

.github/workflows/test-CP2K.yml

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ jobs:
286286
},
287287
"run": {
288288
"id": "${{ github.run_id }}",
289-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
289+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
290290
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
291291
"status": "${{ steps.summary.outputs.overall_status }}",
292292
"runner": {
@@ -349,55 +349,6 @@ jobs:
349349
path: test-results/CP2K.json
350350
retention-days: 90
351351

352-
- name: Commit test results to repository
353-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
354-
run: |
355-
git config --global user.name 'github-actions[bot]'
356-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
357-
358-
mkdir -p data/test-results
359-
cp test-results/CP2K.json data/test-results/CP2K.json
360-
361-
git add data/test-results/CP2K.json
362-
363-
if ! git diff --staged --quiet; then
364-
git commit -m "Update cp2k test results [skip ci]"
365-
366-
# Pull with rebase and push, retry up to 20 times
367-
PUSH_SUCCESS=false
368-
for i in {1..20}; do
369-
if git pull --rebase origin ${{ github.ref_name }}; then
370-
# Rebase succeeded, try to push
371-
if git push; then
372-
echo "Successfully pushed test results"
373-
PUSH_SUCCESS=true
374-
break
375-
fi
376-
else
377-
# Rebase failed, likely due to conflict
378-
echo "Rebase failed, resolving conflicts..."
379-
380-
# Accept our version of the file (the new test results)
381-
git checkout --ours data/test-results/CP2K.json
382-
git add data/test-results/CP2K.json
383-
384-
# Continue the rebase
385-
git rebase --continue || true
386-
fi
387-
388-
# Wait before retry
389-
echo "Retry attempt $i of 20..."
390-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
391-
done
392-
393-
if [ "$PUSH_SUCCESS" = false ]; then
394-
echo "❌ Error: Failed to push test results after 20 attempts."
395-
exit 1
396-
fi
397-
else
398-
echo "No changes to commit"
399-
fi
400-
401352
- name: Create test summary
402353
if: always()
403354
run: |

.github/workflows/test-Crystal-Language.yml

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ jobs:
302302
},
303303
"run": {
304304
"id": "${{ github.run_id }}",
305-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
305+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
306306
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
307307
"status": "${{ steps.summary.outputs.overall_status }}",
308308
"runner": {
@@ -365,55 +365,6 @@ jobs:
365365
path: test-results/Crystal-Language.json
366366
retention-days: 90
367367

368-
- name: Commit test results to repository
369-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
370-
run: |
371-
git config --global user.name 'github-actions[bot]'
372-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
373-
374-
mkdir -p data/test-results
375-
cp test-results/Crystal-Language.json data/test-results/Crystal-Language.json
376-
377-
git add data/test-results/Crystal-Language.json
378-
379-
if ! git diff --staged --quiet; then
380-
git commit -m "Update crystal-language test results [skip ci]"
381-
382-
# Pull with rebase and push, retry up to 20 times
383-
PUSH_SUCCESS=false
384-
for i in {1..20}; do
385-
if git pull --rebase origin ${{ github.ref_name }}; then
386-
# Rebase succeeded, try to push
387-
if git push; then
388-
echo "Successfully pushed test results"
389-
PUSH_SUCCESS=true
390-
break
391-
fi
392-
else
393-
# Rebase failed, likely due to conflict
394-
echo "Rebase failed, resolving conflicts..."
395-
396-
# Accept our version of the file (the new test results)
397-
git checkout --ours data/test-results/Crystal-Language.json
398-
git add data/test-results/Crystal-Language.json
399-
400-
# Continue the rebase
401-
git rebase --continue || true
402-
fi
403-
404-
# Wait before retry
405-
echo "Retry attempt $i of 20..."
406-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
407-
done
408-
409-
if [ "$PUSH_SUCCESS" = false ]; then
410-
echo "❌ Error: Failed to push test results after 20 attempts."
411-
exit 1
412-
fi
413-
else
414-
echo "No changes to commit"
415-
fi
416-
417368
- name: Create test summary
418369
if: always()
419370
run: |

.github/workflows/test-DPDK.yml

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
},
202202
"run": {
203203
"id": "${{ github.run_id }}",
204-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
204+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?job=${{ github.job }}",
205205
"timestamp": "${{ steps.metadata.outputs.timestamp }}",
206206
"status": "${{ steps.summary.outputs.overall_status }}",
207207
"runner": {
@@ -255,55 +255,6 @@ jobs:
255255
path: test-results/DPDK.json
256256
retention-days: 90
257257

258-
- name: Commit test results to repository
259-
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/smoke_tests')
260-
run: |
261-
git config --global user.name 'github-actions[bot]'
262-
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
263-
264-
mkdir -p data/test-results
265-
cp test-results/DPDK.json data/test-results/DPDK.json
266-
267-
git add data/test-results/DPDK.json
268-
269-
if ! git diff --staged --quiet; then
270-
git commit -m "Update dpdk test results [skip ci]"
271-
272-
# Pull with rebase and push, retry up to 20 times
273-
PUSH_SUCCESS=false
274-
for i in {1..20}; do
275-
if git pull --rebase origin ${{ github.ref_name }}; then
276-
# Rebase succeeded, try to push
277-
if git push; then
278-
echo "Successfully pushed test results"
279-
PUSH_SUCCESS=true
280-
break
281-
fi
282-
else
283-
# Rebase failed, likely due to conflict
284-
echo "Rebase failed, resolving conflicts..."
285-
286-
# Accept our version of the file (the new test results)
287-
git checkout --ours data/test-results/DPDK.json
288-
git add data/test-results/DPDK.json
289-
290-
# Continue the rebase
291-
git rebase --continue || true
292-
fi
293-
294-
# Wait before retry
295-
echo "Retry attempt $i of 20..."
296-
sleep $(( (i % 5 + 1) * 2 + (RANDOM % 3) ))
297-
done
298-
299-
if [ "$PUSH_SUCCESS" = false ]; then
300-
echo "❌ Error: Failed to push test results after 20 attempts."
301-
exit 1
302-
fi
303-
else
304-
echo "No changes to commit"
305-
fi
306-
307258
- name: Create test summary
308259
if: always()
309260
run: |

0 commit comments

Comments
 (0)