@@ -126,9 +126,9 @@ jobs:
126
126
repository : intel/llvm
127
127
# Note: The same ref is used in docs build (for dashboard generation)!
128
128
#
129
- # 15.04 .2025
129
+ # 27.06 .2025
130
130
# branch: sycl
131
- ref : 08d11bcae0cc2daec903f222c9b3e3af92f3b806
131
+ ref : 3b04aeb7d1d4ad5bbe64fb257f4ca6e5284ec5d0
132
132
path : sc
133
133
sparse-checkout : |
134
134
devops/scripts/benchmarks
@@ -239,7 +239,7 @@ jobs:
239
239
body: body
240
240
})
241
241
242
- - name : Commit data.json and results directory
242
+ - name : Commit data.json, data_archive.json, and results directory
243
243
working-directory : results-repo
244
244
if : inputs.compatibility == 0
245
245
run : |
@@ -249,11 +249,12 @@ jobs:
249
249
for attempt in {1..5}; do
250
250
echo "Attempt #$attempt to push changes"
251
251
252
- rm -f data.json
252
+ rm -f data.json data_archive.json
253
253
cp ${{ github.workspace }}/sc/devops/scripts/benchmarks/html/data.json .
254
+ cp ${{ github.workspace }}/sc/devops/scripts/benchmarks/html/data_archive.json .
254
255
255
- git add data.json results/
256
- git commit -m "Add benchmark results and data .json"
256
+ git add data.json data_archive.json results/
257
+ git commit -m "Add benchmark results, data.json, and data_archive .json"
257
258
258
259
results_file=$(git diff HEAD~1 --name-only -- results/ | head -n 1)
259
260
@@ -274,7 +275,7 @@ jobs:
274
275
mv ${{ github.workspace }}/temp_$(basename $results_file) $new_file
275
276
fi
276
277
277
- echo "Regenerating data.json"
278
+ echo "Regenerating data.json and data_archive.json "
278
279
(cd ${{ github.workspace }} && ${{ github.workspace }}/sc/devops/scripts/benchmarks/main.py ~/bench_workdir_umf --dry-run --results-dir ${{ github.workspace }}/results-repo --output-html remote)
279
280
280
281
done
0 commit comments