Skip to content

Commit 736b858

Browse files
authored
Merge pull request #38 from chrisburr/add-server-deps
Add HTCondor packages
2 parents 0fe7991 + 9a78f7f commit 736b858

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

construct.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

tests/test_cli.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,26 @@ if ! (singularity --verbose --debug run -u lolcow || (singularity --verbose --de
5757
rc=1;
5858
fi
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+
6082
exit $rc

0 commit comments

Comments
 (0)