Skip to content

Commit

Permalink
Remove old test in Github actions
Browse files Browse the repository at this point in the history
The old benchmarks do not exist anymore, so the old test in Github actions to test if a simple simulation works does not work anymore
Moreover, the new benchmarks replace this test in the Github actions process
  • Loading branch information
tbaudier committed Apr 12, 2021
1 parent 651a871 commit fa19920
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,17 +210,13 @@ jobs:
ctest_start("\${dashboard_model}")
ctest_configure(CAPTURE_CMAKE_ERROR configure_errors RETURN_VALUE configure_Results)
ctest_build(NUMBER_ERRORS build_errors RETURN_VALUE build_Results)
ctest_test(CAPTURE_CMAKE_ERROR test_errors RETURN_VALUE test_Results)
ctest_submit(RETURN_VALUE submit_Results)
if ((NOT \${configure_errors} EQUAL 0) OR (NOT \${configure_Results} EQUAL 0))
message( FATAL_ERROR "Configuration error" )
endif()
if ((NOT \${build_errors} EQUAL 0) OR (NOT \${build_Results} EQUAL 0))
message( FATAL_ERROR "Build error" )
endif()
if ((NOT \${test_errors} EQUAL 0) OR (NOT \${test_Results} EQUAL 0))
message( FATAL_ERROR "Test error" )
endif()
if (NOT \${submit_Results} EQUAL 0)
message( FATAL_ERROR "Submit error" )
endif()
Expand All @@ -235,12 +231,10 @@ jobs:
export PATH=${ROOTSYS}:${PATH}
source $HOME/software/root/install/bin/thisroot.sh
source $HOME/software/geant4/install/bin/geant4.sh
ls -lrt $GITHUB_WORKSPACE/benchmarks/benchRT/output
ctest -S dashboard.cmake -VV
if [ ! $? -eq 0 ]; then
exit 1
fi
ls -lrt $GITHUB_WORKSPACE/benchmarks/benchRT/output
fi
benchmarks:
Expand Down

0 comments on commit fa19920

Please sign in to comment.