File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ jobs:
120120 fail-fast : false
121121 matrix :
122122 docker-image :
123- - " centos:6"
124123 - " centos:7"
125124 - " centos:8"
126125 steps :
Original file line number Diff line number Diff line change @@ -49,8 +49,10 @@ specs:
4949 - apache-libcloud
5050 - boto3
5151 - gfal2-util
52+ - htcondor-utils # [linux64]
5253 - nordugrid-arc
5354 - python-gfal2
55+ - python-htcondor # [linux64]
5456 - voms
5557 # Others
5658 - diraccfg
Original file line number Diff line number Diff line change @@ -57,4 +57,26 @@ if ! (singularity --verbose --debug run -u lolcow || (singularity --verbose --de
5757 rc=1;
5858fi
5959
60+ # For HTCondor
61+ if ! condor_submit -help; then
62+ echo " condor_submit -help not working" ;
63+ rc=1;
64+ fi
65+ if ! condor_history -help; then
66+ echo " condor_history -help not working" ;
67+ rc=1;
68+ fi
69+ if ! condor_q -help; then
70+ echo " condor_q -help not working" ;
71+ rc=1;
72+ fi
73+ if ! condor_rm -help; then
74+ echo " condor_rm -help not working" ;
75+ rc=1;
76+ fi
77+ if ! condor_transfer_data -help; then
78+ echo " condor_transfer_data -help not working" ;
79+ rc=1;
80+ fi
81+
6082exit $rc
You can’t perform that action at this time.
0 commit comments