Skip to content

Commit fbf9797

Browse files
committed
Specify path direclty only
1 parent cd5e862 commit fbf9797

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/soa-benchmark-vtune.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)