File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -10,26 +10,24 @@ jobs:
1010 soa-benchmark :
1111 runs-on : cern-nextgen-h100
1212 container : registry.cern.ch/ngt-wp1.7/wp1.7-soa-benchmark:latest
13- env :
14- BUILD_DIR : ${{github.workspace}}-vtune
1513 steps :
1614 - uses : actions/checkout@v4
1715 - name : build and compile
1816 run : |
19- cmake -B "$BUILD_DIR"
20- cmake --build "$BUILD_DIR"
17+ cmake -B ${{github.workspace}}-vtune
18+ cmake --build ${{github.workspace}}-vtune
2119 - name : run benchmarks
2220 run : |
2321 python3 run_benchmarks_with_vtune.py ${{github.workspace}}-vtune soa_versions.csv
2422 python3 plot_benchmarks.py ${{github.workspace}}-vtune soa_versions.csv
2523 echo "Files in Workspace Directory:"
26- ls -l "$BUILD_DIR"
24+ ls -l ${{github.workspace}}-vtune
2725 - name : collect artifacts
2826 run : |
2927 mkdir soa-benchmark-results
30- mv "$BUILD_DIR" /*.png soa-benchmark-results/
31- mv "$BUILD_DIR" /*.json soa-benchmark-results/
32- mv "$BUILD_DIR" /*.csv soa-benchmark-results/
28+ mv ${{github.workspace}}-vtune /*.png soa-benchmark-results/
29+ mv ${{github.workspace}}-vtune /*.json soa-benchmark-results/
30+ mv ${{github.workspace}}-vtune /*.csv soa-benchmark-results/
3331 echo "Files in Results Directory:"
3432 ls -l soa-benchmark-results
3533 - name : upload results
You can’t perform that action at this time.
0 commit comments