Skip to content

Commit 93100c5

Browse files
Merge pull request #1015 from ArmDeveloperEcosystem/main
Updating with new jobs from main
2 parents 087f611 + 0038409 commit 93100c5

965 files changed

Lines changed: 22902 additions & 22900 deletions

File tree

Some content is hidden

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

.github/workflows/test-enroot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,7 @@ jobs:
357357
bash "$PREFIX/usr/bin/enroot" version | grep -F "$LATEST_VERSION"
358358
bash "$PREFIX/usr/bin/enroot" list >/tmp/enroot-next-list.log
359359
limited_cpu_description: "Built the next Enroot source candidate into a staging prefix and executed version/list commands on the Arm64 runner. GPU hooks and real container import/start remain out of scope for the generic runner."
360+
defer_on_limited_cpu_probe_failure: "true"
360361
- name: Calculate test summary
361362
id: summary
362363
if: always()

.github/workflows/test-font-awesome.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,14 +215,15 @@ jobs:
215215
set -euo pipefail
216216
START_TIME=$(date +%s)
217217
cd "${{ steps.install.outputs.workdir }}"
218-
CSS_FILE=$(find node_modules/@fortawesome/fontawesome-free/css -name '*.css' | head -n 1)
219-
FONT_FILE=$(find node_modules/@fortawesome/fontawesome-free/webfonts -name 'fa-solid-*.ttf' | head -n 1)
218+
CSS_FILE=node_modules/@fortawesome/fontawesome-free/css/all.css
219+
FONT_FILE=node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf
220220
export CSS_FILE FONT_FILE
221221
node <<'NODE' > /tmp/font-awesome-functional.log
222222
const fontkit = require('fontkit');
223223
const font = fontkit.openSync(process.env.FONT_FILE);
224224
const css = require('fs').readFileSync(process.env.CSS_FILE, 'utf8');
225-
if (!/Font Awesome/.test(font.fullName) || font.numGlyphs < 100 || !css.includes('.fa-')) {
225+
const glyphCount = Number.isFinite(font.numGlyphs) ? font.numGlyphs : (font.characterSet || []).length;
226+
if (glyphCount < 100 || !/\.fa[\s,.:{_-]/.test(css)) {
226227
process.exit(1);
227228
}
228229
console.log('font-awesome-font-ok');

.github/workflows/test-ord-provider-server.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,7 @@ jobs:
664664
npm run build
665665
node dist/src/cli.js --help | grep -Eiq 'ord-provider-server|directory|base-url'
666666
limited_cpu_description: "Built the next ORD Provider Server Node package and executed its CLI help path on the Arm64 runner. Full HTTP fixture coverage remains in Tests 1-5 for the pinned baseline."
667+
defer_on_limited_cpu_probe_failure: "true"
667668

668669
- name: Calculate test summary
669670
id: summary

.github/workflows/test-snapcraft.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
run: |
209209
START_TIME=$(date +%s)
210210
211-
if snapcraft list-plugins > snapcraft-plugins.txt && [ -s snapcraft-plugins.txt ]; then
211+
if { snapcraft plugins > snapcraft-plugins.txt || snapcraft list-plugins > snapcraft-plugins.txt; } && [ -s snapcraft-plugins.txt ]; then
212212
echo "✓ snapcraft listed available plugins"
213213
echo "status=passed" >> $GITHUB_OUTPUT
214214
else
@@ -312,4 +312,3 @@ jobs:
312312
echo "3. Check Binary Help: ${{ steps.test3.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY
313313
echo "4. Architecture Verification: ${{ steps.test4.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY
314314
echo "5. Functional Validation: ${{ steps.test5.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY
315-

data/test-results-index.json

Lines changed: 11514 additions & 11514 deletions
Large diffs are not rendered by default.

data/test-results/0xffff.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "0.9"
66
},
77
"run": {
8-
"id": "27166383348",
8+
"id": "28046656371",
99
"attempt": "1",
10-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348",
11-
"timestamp": "2026-06-08T20:55:57Z",
10+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718",
11+
"timestamp": "2026-06-23T18:06:37Z",
1212
"status": "success",
1313
"runner": {
1414
"os": "ubuntu-24.04",
@@ -26,37 +26,37 @@
2626
"name": "Test 1 - Check 0xffff binary exists",
2727
"status": "passed",
2828
"duration_seconds": 0,
29-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:6:1"
29+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:6:1"
3030
},
3131
{
3232
"name": "Test 2 - Check 0xffff version command",
3333
"status": "passed",
3434
"duration_seconds": 0,
35-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:7:1"
35+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:7:1"
3636
},
3737
{
3838
"name": "Test 3 - Check 0xffff help output",
3939
"status": "passed",
4040
"duration_seconds": 0,
41-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:8:1"
41+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:8:1"
4242
},
4343
{
4444
"name": "Test 4 - Architecture Verification",
4545
"status": "passed",
4646
"duration_seconds": 0,
47-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:9:1"
47+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:9:1"
4848
},
4949
{
5050
"name": "Test 5 - Functional Validation",
5151
"status": "passed",
5252
"duration_seconds": 0,
53-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:10:1"
53+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:10:1"
5454
},
5555
{
5656
"name": "Test 6 - Regression Validation",
5757
"status": "passed",
5858
"duration_seconds": 3,
59-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166383348/job/80194555348#step:11:1",
59+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046656371/job/83026386718#step:11:1",
6060
"current_version": "0.9",
6161
"latest_version": "0.10",
6262
"next_installed_version": "0.10",
@@ -79,7 +79,7 @@
7979
"regression_note": "",
8080
"regression_status": "passed",
8181
"regression_decision": "next_install_validated",
82-
"production_refreshed_at": "2026-06-08T22:12:35.822653+00:00",
82+
"production_refreshed_at": "2026-06-23T19:25:56.137876+00:00",
8383
"publish_state": "published"
8484
}
8585
}

data/test-results/5G-RAL.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "armral-25.01"
66
},
77
"run": {
8-
"id": "27166375333",
8+
"id": "28046647507",
99
"attempt": "1",
10-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062",
11-
"timestamp": "2026-06-08T20:55:47Z",
10+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645",
11+
"timestamp": "2026-06-23T18:06:28Z",
1212
"status": "success",
1313
"runner": {
1414
"os": "ubuntu-24.04",
@@ -20,43 +20,43 @@
2020
"passed": 6,
2121
"failed": 0,
2222
"skipped": 0,
23-
"duration_seconds": 171,
23+
"duration_seconds": 172,
2424
"details": [
2525
{
2626
"name": "Test 1 - Check Library Built",
2727
"status": "passed",
2828
"duration_seconds": 0,
29-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:7:1"
29+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:7:1"
3030
},
3131
{
3232
"name": "Test 2 - Check Version Output",
3333
"status": "passed",
3434
"duration_seconds": 0,
35-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:8:1"
35+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:8:1"
3636
},
3737
{
3838
"name": "Test 3 - Check Headers",
3939
"status": "passed",
4040
"duration_seconds": 0,
41-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:9:1"
41+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:9:1"
4242
},
4343
{
4444
"name": "Test 5 - Functional Validation",
4545
"status": "passed",
46-
"duration_seconds": 53,
47-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:10:1"
46+
"duration_seconds": 54,
47+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:10:1"
4848
},
4949
{
5050
"name": "Test 4 - Architecture Verification",
5151
"status": "passed",
5252
"duration_seconds": 0,
53-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:11:1"
53+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:11:1"
5454
},
5555
{
5656
"name": "Test 6 - Regression Validation",
5757
"status": "passed",
5858
"duration_seconds": 118,
59-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194523062#step:12:1",
59+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352645#step:12:1",
6060
"current_version": "armral-25.01",
6161
"latest_version": "armral-25.04",
6262
"next_installed_version": "armral-25.04",
@@ -79,7 +79,7 @@
7979
"regression_note": "",
8080
"regression_status": "passed",
8181
"regression_decision": "next_install_validated",
82-
"production_refreshed_at": "2026-06-08T22:12:35.823019+00:00",
82+
"production_refreshed_at": "2026-06-23T19:25:56.138215+00:00",
8383
"publish_state": "published"
8484
}
8585
}

data/test-results/7-zip.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "23.01"
66
},
77
"run": {
8-
"id": "27166416541",
8+
"id": "28046692346",
99
"attempt": "1",
10-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669",
11-
"timestamp": "2026-06-08T20:56:33Z",
10+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486",
11+
"timestamp": "2026-06-23T18:07:14Z",
1212
"status": "success",
1313
"runner": {
1414
"os": "ubuntu-24.04",
@@ -26,37 +26,37 @@
2626
"name": "Test 1 - Check 7-zip binary exists",
2727
"status": "passed",
2828
"duration_seconds": 0,
29-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:6:1"
29+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:6:1"
3030
},
3131
{
3232
"name": "Test 2 - Check 7-zip version/help command",
3333
"status": "passed",
3434
"duration_seconds": 0,
35-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:7:1"
35+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:7:1"
3636
},
3737
{
3838
"name": "Test 3 - Check 7-zip help output",
3939
"status": "passed",
4040
"duration_seconds": 0,
41-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:8:1"
41+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:8:1"
4242
},
4343
{
4444
"name": "Test 4 - Architecture Verification",
4545
"status": "passed",
4646
"duration_seconds": 0,
47-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:9:1"
47+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:9:1"
4848
},
4949
{
5050
"name": "Test 5 - Functional Validation",
5151
"status": "passed",
5252
"duration_seconds": 1,
53-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:10:1"
53+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:10:1"
5454
},
5555
{
5656
"name": "Regression applicability - package manager installed",
5757
"status": "passed",
5858
"duration_seconds": 0,
59-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166416541/job/80194662669#step:11:1"
59+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046692346/job/83026499486#step:11:1"
6060
}
6161
]
6262
},
@@ -71,7 +71,7 @@
7171
"regression_applicability": "not_applicable",
7272
"regression_reason": "package_manager_installed",
7373
"regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.",
74-
"production_refreshed_at": "2026-06-08T22:12:35.823249+00:00",
74+
"production_refreshed_at": "2026-06-23T19:25:56.138443+00:00",
7575
"publish_state": "published"
7676
}
7777
}

data/test-results/AvxToNeon.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "1.0.0"
66
},
77
"run": {
8-
"id": "27166375333",
8+
"id": "28046647507",
99
"attempt": "1",
10-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790",
11-
"timestamp": "2026-06-08T20:55:45Z",
10+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090",
11+
"timestamp": "2026-06-23T18:06:28Z",
1212
"status": "success",
1313
"runner": {
1414
"os": "ubuntu-24.04",
@@ -20,43 +20,43 @@
2020
"passed": 5,
2121
"failed": 0,
2222
"skipped": 1,
23-
"duration_seconds": 4,
23+
"duration_seconds": 3,
2424
"details": [
2525
{
2626
"name": "Test 1 - Check Header Existence",
2727
"status": "passed",
2828
"duration_seconds": 0,
29-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:7:1"
29+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:7:1"
3030
},
3131
{
3232
"name": "Test 2 - Compile Simple Program",
3333
"status": "passed",
34-
"duration_seconds": 4,
35-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:9:1"
34+
"duration_seconds": 3,
35+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:9:1"
3636
},
3737
{
3838
"name": "Test 3 - Run Program",
3939
"status": "passed",
4040
"duration_seconds": 0,
41-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:10:1"
41+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:10:1"
4242
},
4343
{
4444
"name": "Test 4 - Architecture Verification",
4545
"status": "passed",
4646
"duration_seconds": 0,
47-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:11:1"
47+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:11:1"
4848
},
4949
{
5050
"name": "Test 5 - Functional Validation",
5151
"status": "passed",
5252
"duration_seconds": 0,
53-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:12:1"
53+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:12:1"
5454
},
5555
{
5656
"name": "Test 6 - Regression Validation",
5757
"status": "skipped",
5858
"duration_seconds": 0,
59-
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/27166375333/job/80194522790#step:13:1",
59+
"url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/28046647507/job/83026352090#step:13:1",
6060
"current_version": "1.0.0",
6161
"latest_version": "1.0.0",
6262
"next_installed_version": "1.0.0",
@@ -79,7 +79,7 @@
7979
"regression_note": "",
8080
"regression_status": "skipped",
8181
"regression_decision": "no_newer_stable_available",
82-
"production_refreshed_at": "2026-06-08T22:12:35.823464+00:00",
82+
"production_refreshed_at": "2026-06-23T19:25:56.138637+00:00",
8383
"publish_state": "published"
8484
}
8585
}

0 commit comments

Comments
 (0)