Skip to content

Commit

Permalink
do not fail crab job
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Dec 6, 2024
1 parent 2b3cbf2 commit 5fc85ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crab/scram-build/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ pushd $CMSSW_BASE
cd cmssw-config; git checkout V09-06-02 ; cd ..
rm -rf config/SCRAM; mv cmssw-config/SCRAM config/SCRAM
git cms-addpkg '*' > $log
scram b -v -k -j $(nproc) >$log 2>&1
scram b -v -k -j $(nproc) >$log 2>&1 || true
eval `scram run -sh`
which edmPluginDump
edmPluginDump -a >>$log
edmPluginDump -a >>$log || true
which cmsRun
cmsRun --help >>$log
cmsRun --help >>$log || true
popd
[ -f $log ] || mv $CMSSW_BASE/$log $log
cmsRun -j FrameworkJobReport.xml -p PSet.py
cmsRun -j FrameworkJobReport.xml -p PSet.py || true

0 comments on commit 5fc85ff

Please sign in to comment.