Skip to content

Commit 06c0261

Browse files
debug
1 parent ac0c164 commit 06c0261

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/standalone-benchmark.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
steps:
1515
- name: Checkout Repository
1616
uses: actions/checkout@v4
17-
with:
18-
ref: ngt-ci-pipeline
1917
- name: Build and Run
2018
run: |
2119
source /etc/profile.d/modules.sh
@@ -29,13 +27,15 @@ jobs:
2927
cd $BUILD_DIR
3028
make install -j8
3129
cd ${STANDALONE_DIR}
32-
${STANDALONE_DIR}/ca -e o2-pbpb-100 -g --gpuType CUDA --gpuDevice 0 --debug 1 > /root/standalone-benchmark-artifact.txt
30+
${STANDALONE_DIR}/ca -e o2-pbpb-100 -g --gpuType CUDA --gpuDevice 0 --debug 1 > ${ARTIFACT_FILE}
31+
cat ${ARTIFACT_FILE}
3332
env:
3433
MODULEPATH: /cvmfs/alice.cern.ch/etc/toolchain/modulefiles/el9-x86_64:/cvmfs/alice.cern.ch/el9-x86_64/Modules/modulefiles
3534
STANDALONE_DIR: /root/standalone
3635
BUILD_DIR: /root/standalone/build
36+
ARTIFACT_FILE: /root/standalone-benchmark-artifact.txt
3737
- name: Upload Artifact
3838
uses: actions/upload-artifact@v4
3939
with:
4040
name: standalone-benchmark-artifact
41-
path: /root/standalone-benchmark-artifact.txt
41+
path: ${ARTIFACT_FILE}

0 commit comments

Comments
 (0)