File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,6 @@ name: Standalone Benchmark
22
33on :
44 workflow_dispatch :
5- inputs :
6- o2_revision :
7- description : " O2 revision"
8- required : true
9- default : " daily-20250805-0000-1"
105 pull_request :
116 push :
127 branches :
@@ -44,25 +39,24 @@ jobs:
4439
4540 - name : Build and Run
4641 run : |
47- O2_REVISION="${{ github.event.inputs.o2_revision || $DEFAULT_O2_REVISION }}"
48- . $WORK_DIR/$ALIBUILD_ARCH_PREFIX/O2/${O2_REVISION}/etc/profile.d/init.sh
42+ . ${WORK_DIR}/${ALIBUILD_ARCH_PREFIX}/O2/${O2_REVISION}/etc/profile.d/init.sh
4943 export ROOT_INCLUDE_PATH=$(echo "$ROOT_INCLUDE_PATH" | cut -d: -f3-)
5044
5145 mkdir -p ${STANDALONE_DIR}
5246 curl -o /root/events.tar.xz https://cernbox.cern.ch/remote.php/dav/public-files/cuQAwSojyDrl6FR/events.tar.xz
5347 tar -xf /root/events.tar.xz -C ${STANDALONE_DIR}
5448 rm /root/events.tar.xz
5549
56- cmake -B $BUILD_DIR ${{ matrix.cmake_args }} -DGPUCA_BUILD_EVENT_DISPLAY=0 -DCMAKE_INSTALL_PREFIX=${STANDALONE_DIR} ${GITHUB_WORKSPACE}/GPU/GPUTracking/Standalone/
57- cd $BUILD_DIR
50+ cmake -B ${ BUILD_DIR} ${{ matrix.cmake_args }} -DGPUCA_BUILD_EVENT_DISPLAY=0 -DCMAKE_INSTALL_PREFIX=${STANDALONE_DIR} ${GITHUB_WORKSPACE}/GPU/GPUTracking/Standalone/
51+ cd ${ BUILD_DIR}
5852 make install -j8
5953 cd ${STANDALONE_DIR}
6054 ${STANDALONE_DIR}/ca -e o2-simple -g ${{ matrix.ca_args }} --debug 1 > ${ARTIFACT_FILE}
6155 cat ${ARTIFACT_FILE}
6256 env :
6357 WORK_DIR : /cvmfs/alice.cern.ch
6458 ALIBUILD_ARCH_PREFIX : el9-x86_64/Packages
65- DEFAULT_O2_REVISION : daily-20250805-0000-1
59+ O2_REVISION : daily-20250805-0000-1
6660 STANDALONE_DIR : /root/standalone
6761 BUILD_DIR : /root/standalone/build
6862 ARTIFACT_FILE : /root/artifact.txt
You can’t perform that action at this time.
0 commit comments