Skip to content

Commit d44f028

Browse files
committed
Fix JSON generation bug and standardize workflow filenames
1 parent 18cf959 commit d44f028

File tree

896 files changed

+2075
-3255
lines changed

Some content is hidden

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

896 files changed

+2075
-3255
lines changed

.github/workflows/test-0xffff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: metadata
5454
run: |
5555
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
56-
echo "package_slug=0xffff" >> $GITHUB_OUTPUT
57-
echo "dashboard_link=/opensource_packages/0xffff" >> $GITHUB_OUTPUT
56+
echo "package_slug=0xffff >> $GITHUB_OUTPUT
57+
echo "dashboard_link=/opensource_packages/0xffff >> $GITHUB_OUTPUT
5858
5959
# ============================================================
6060
# CUSTOMIZE THIS: Install your package
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: metadata
5454
run: |
5555
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
56-
echo "package_slug=5g-ral" >> $GITHUB_OUTPUT
57-
echo "dashboard_link=/opensource_packages/5g-ral" >> $GITHUB_OUTPUT
56+
echo "package_slug=5G-RAL >> $GITHUB_OUTPUT
57+
echo "dashboard_link=/opensource_packages/5G-RAL >> $GITHUB_OUTPUT
5858
5959
# ============================================================
6060
# CUSTOMIZE THIS: Install your package
@@ -279,7 +279,7 @@ jobs:
279279
run: |
280280
mkdir -p test-results
281281
282-
cat > test-results/5g-ral.json << EOF
282+
cat > test-results/5G-RAL.json << EOF
283283
{
284284
"schema_version": "1.0",
285285
"package": {
@@ -329,7 +329,7 @@ jobs:
329329
EOF
330330
331331
echo "Generated test results:"
332-
cat test-results/5g-ral.json
332+
cat test-results/5G-RAL.json
333333
334334
# ============================================================
335335
# STANDARD STEPS - Usually don't need to modify below here
@@ -340,7 +340,7 @@ jobs:
340340
uses: actions/upload-artifact@v4
341341
with:
342342
name: 5g-ral-test-results
343-
path: test-results/5g-ral.json
343+
path: test-results/5G-RAL.json
344344
retention-days: 90
345345

346346
- name: Commit test results to repository
@@ -350,9 +350,9 @@ jobs:
350350
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
351351
352352
mkdir -p data/test-results
353-
cp test-results/5g-ral.json data/test-results/5g-ral.json
353+
cp test-results/5G-RAL.json data/test-results/5G-RAL.json
354354
355-
git add data/test-results/5g-ral.json
355+
git add data/test-results/5G-RAL.json
356356
357357
if ! git diff --staged --quiet; then
358358
git commit -m "Update 5g-ral test results [skip ci]"
@@ -370,8 +370,8 @@ jobs:
370370
echo "Rebase failed, resolving conflicts..."
371371
372372
# Accept our version of the file (the new test results)
373-
git checkout --ours data/test-results/5g-ral.json
374-
git add data/test-results/5g-ral.json
373+
git checkout --ours data/test-results/5G-RAL.json
374+
git add data/test-results/5G-RAL.json
375375
376376
# Continue the rebase
377377
git rebase --continue || true

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: metadata
5454
run: |
5555
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
56-
echo "package_slug=7-zip" >> $GITHUB_OUTPUT
57-
echo "dashboard_link=/opensource_packages/7-zip" >> $GITHUB_OUTPUT
56+
echo "package_slug=7-zip >> $GITHUB_OUTPUT
57+
echo "dashboard_link=/opensource_packages/7-zip >> $GITHUB_OUTPUT
5858
5959
# ============================================================
6060
# CUSTOMIZE THIS: Install your package
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
id: metadata
2424
run: |
2525
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
26-
echo "package_slug=avxtoneon" >> $GITHUB_OUTPUT
27-
echo "dashboard_link=/opensource_packages/avxtoneon" >> $GITHUB_OUTPUT
26+
echo "package_slug=AvxToNeon >> $GITHUB_OUTPUT
27+
echo "dashboard_link=/opensource_packages/AvxToNeon >> $GITHUB_OUTPUT
2828
2929
- name: Install Build Tools
3030
run: sudo apt-get update && sudo apt-get install -y build-essential cmake git
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: metadata
5454
run: |
5555
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
56-
echo "package_slug=cp2k" >> $GITHUB_OUTPUT
57-
echo "dashboard_link=/opensource_packages/cp2k" >> $GITHUB_OUTPUT
56+
echo "package_slug=CP2K >> $GITHUB_OUTPUT
57+
echo "dashboard_link=/opensource_packages/CP2K >> $GITHUB_OUTPUT
5858
5959
# ============================================================
6060
# CUSTOMIZE THIS: Install your package
@@ -219,7 +219,6 @@ jobs:
219219
PASSED=$((PASSED + 1))
220220
else
221221
FAILED=$((FAILED + 1))
222-
exit 1
223222
224223
fi
225224
TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test1.outputs.duration || 0 }}))
@@ -279,7 +278,7 @@ jobs:
279278
run: |
280279
mkdir -p test-results
281280
282-
cat > test-results/cp2k.json << EOF
281+
cat > test-results/CP2K.json << EOF
283282
{
284283
"schema_version": "1.0",
285284
"package": {
@@ -329,7 +328,7 @@ jobs:
329328
EOF
330329
331330
echo "Generated test results:"
332-
cat test-results/cp2k.json
331+
cat test-results/CP2K.json
333332
334333
# ============================================================
335334
# STANDARD STEPS - Usually don't need to modify below here
@@ -340,7 +339,7 @@ jobs:
340339
uses: actions/upload-artifact@v4
341340
with:
342341
name: cp2k-test-results
343-
path: test-results/cp2k.json
342+
path: test-results/CP2K.json
344343
retention-days: 90
345344

346345
- name: Commit test results to repository
@@ -350,9 +349,9 @@ jobs:
350349
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
351350
352351
mkdir -p data/test-results
353-
cp test-results/cp2k.json data/test-results/cp2k.json
352+
cp test-results/CP2K.json data/test-results/CP2K.json
354353
355-
git add data/test-results/cp2k.json
354+
git add data/test-results/CP2K.json
356355
357356
if ! git diff --staged --quiet; then
358357
git commit -m "Update cp2k test results [skip ci]"
@@ -370,8 +369,8 @@ jobs:
370369
echo "Rebase failed, resolving conflicts..."
371370
372371
# Accept our version of the file (the new test results)
373-
git checkout --ours data/test-results/cp2k.json
374-
git add data/test-results/cp2k.json
372+
git checkout --ours data/test-results/CP2K.json
373+
git add data/test-results/CP2K.json
375374
376375
# Continue the rebase
377376
git rebase --continue || true

.github/workflows/test-crystal-language.yml renamed to .github/workflows/test-Crystal-Language.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: metadata
5454
run: |
5555
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
56-
echo "package_slug=crystal-language" >> $GITHUB_OUTPUT
57-
echo "dashboard_link=/opensource_packages/crystal-language" >> $GITHUB_OUTPUT
56+
echo "package_slug=Crystal-Language >> $GITHUB_OUTPUT
57+
echo "dashboard_link=/opensource_packages/Crystal-Language >> $GITHUB_OUTPUT
5858
5959
# ============================================================
6060
# CUSTOMIZE THIS: Install your package
@@ -219,7 +219,6 @@ jobs:
219219
PASSED=$((PASSED + 1))
220220
else
221221
FAILED=$((FAILED + 1))
222-
exit 1
223222
224223
fi
225224
TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test1.outputs.duration || 0 }}))
@@ -279,7 +278,7 @@ jobs:
279278
run: |
280279
mkdir -p test-results
281280
282-
cat > test-results/crystal-language.json << EOF
281+
cat > test-results/Crystal-Language.json << EOF
283282
{
284283
"schema_version": "1.0",
285284
"package": {
@@ -329,7 +328,7 @@ jobs:
329328
EOF
330329
331330
echo "Generated test results:"
332-
cat test-results/crystal-language.json
331+
cat test-results/Crystal-Language.json
333332
334333
# ============================================================
335334
# STANDARD STEPS - Usually don't need to modify below here
@@ -340,7 +339,7 @@ jobs:
340339
uses: actions/upload-artifact@v4
341340
with:
342341
name: crystal-language-test-results
343-
path: test-results/crystal-language.json
342+
path: test-results/Crystal-Language.json
344343
retention-days: 90
345344

346345
- name: Commit test results to repository
@@ -350,9 +349,9 @@ jobs:
350349
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
351350
352351
mkdir -p data/test-results
353-
cp test-results/crystal-language.json data/test-results/crystal-language.json
352+
cp test-results/Crystal-Language.json data/test-results/Crystal-Language.json
354353
355-
git add data/test-results/crystal-language.json
354+
git add data/test-results/Crystal-Language.json
356355
357356
if ! git diff --staged --quiet; then
358357
git commit -m "Update crystal-language test results [skip ci]"
@@ -370,8 +369,8 @@ jobs:
370369
echo "Rebase failed, resolving conflicts..."
371370
372371
# Accept our version of the file (the new test results)
373-
git checkout --ours data/test-results/crystal-language.json
374-
git add data/test-results/crystal-language.json
372+
git checkout --ours data/test-results/Crystal-Language.json
373+
git add data/test-results/Crystal-Language.json
375374
376375
# Continue the rebase
377376
git rebase --continue || true
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
id: metadata
2525
run: |
2626
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
27-
echo "package_slug=dpdk" >> $GITHUB_OUTPUT
28-
echo "dashboard_link=/opensource_packages/dpdk" >> $GITHUB_OUTPUT
27+
echo "package_slug=DPDK >> $GITHUB_OUTPUT
28+
echo "dashboard_link=/opensource_packages/DPDK >> $GITHUB_OUTPUT
2929
3030
# ============================================================
3131
# CUSTOMIZE THIS: Install your package
@@ -190,7 +190,6 @@ jobs:
190190
PASSED=$((PASSED + 1))
191191
else
192192
FAILED=$((FAILED + 1))
193-
exit 1
194193
195194
fi
196195
TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test1.outputs.duration || 0 }}))
@@ -250,7 +249,7 @@ jobs:
250249
run: |
251250
mkdir -p test-results
252251
253-
cat > test-results/dpdk.json << EOF
252+
cat > test-results/DPDK.json << EOF
254253
{
255254
"schema_version": "1.0",
256255
"package": {
@@ -300,7 +299,7 @@ jobs:
300299
EOF
301300
302301
echo "Generated test results:"
303-
cat test-results/dpdk.json
302+
cat test-results/DPDK.json
304303
305304
# ============================================================
306305
# STANDARD STEPS - Usually don't need to modify below here
@@ -311,7 +310,7 @@ jobs:
311310
uses: actions/upload-artifact@v4
312311
with:
313312
name: dpdk-test-results
314-
path: test-results/dpdk.json
313+
path: test-results/DPDK.json
315314
retention-days: 90
316315

317316
- name: Commit test results to repository
@@ -321,9 +320,9 @@ jobs:
321320
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
322321
323322
mkdir -p data/test-results
324-
cp test-results/dpdk.json data/test-results/dpdk.json
323+
cp test-results/DPDK.json data/test-results/DPDK.json
325324
326-
git add data/test-results/dpdk.json
325+
git add data/test-results/DPDK.json
327326
328327
if ! git diff --staged --quiet; then
329328
git commit -m "Update dpdk test results [skip ci]"
@@ -341,8 +340,8 @@ jobs:
341340
echo "Rebase failed, resolving conflicts..."
342341
343342
# Accept our version of the file (the new test results)
344-
git checkout --ours data/test-results/dpdk.json
345-
git add data/test-results/dpdk.json
343+
git checkout --ours data/test-results/DPDK.json
344+
git add data/test-results/DPDK.json
346345
347346
# Continue the rebase
348347
git rebase --continue || true
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
id: metadata
2525
run: |
2626
echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT
27-
echo "package_slug=datree" >> $GITHUB_OUTPUT
28-
echo "dashboard_link=/opensource_packages/datree" >> $GITHUB_OUTPUT
27+
echo "package_slug=Datree >> $GITHUB_OUTPUT
28+
echo "dashboard_link=/opensource_packages/Datree >> $GITHUB_OUTPUT
2929
3030
# ============================================================
3131
# CUSTOMIZE THIS: Install your package
@@ -161,7 +161,6 @@ jobs:
161161
PASSED=$((PASSED + 1))
162162
else
163163
FAILED=$((FAILED + 1))
164-
exit 1
165164
166165
fi
167166
TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test1.outputs.duration || 0 }}))
@@ -221,7 +220,7 @@ jobs:
221220
run: |
222221
mkdir -p test-results
223222
224-
cat > test-results/datree.json << EOF
223+
cat > test-results/Datree.json << EOF
225224
{
226225
"schema_version": "1.0",
227226
"package": {
@@ -271,7 +270,7 @@ jobs:
271270
EOF
272271
273272
echo "Generated test results:"
274-
cat test-results/datree.json
273+
cat test-results/Datree.json
275274
276275
# ============================================================
277276
# STANDARD STEPS - Usually don't need to modify below here
@@ -282,7 +281,7 @@ jobs:
282281
uses: actions/upload-artifact@v4
283282
with:
284283
name: datree-test-results
285-
path: test-results/datree.json
284+
path: test-results/Datree.json
286285
retention-days: 90
287286

288287
- name: Commit test results to repository
@@ -292,9 +291,9 @@ jobs:
292291
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
293292
294293
mkdir -p data/test-results
295-
cp test-results/datree.json data/test-results/datree.json
294+
cp test-results/Datree.json data/test-results/Datree.json
296295
297-
git add data/test-results/datree.json
296+
git add data/test-results/Datree.json
298297
299298
if ! git diff --staged --quiet; then
300299
git commit -m "Update datree test results [skip ci]"
@@ -312,8 +311,8 @@ jobs:
312311
echo "Rebase failed, resolving conflicts..."
313312
314313
# Accept our version of the file (the new test results)
315-
git checkout --ours data/test-results/datree.json
316-
git add data/test-results/datree.json
314+
git checkout --ours data/test-results/Datree.json
315+
git add data/test-results/Datree.json
317316
318317
# Continue the rebase
319318
git rebase --continue || true

0 commit comments

Comments
 (0)