Skip to content

Commit

Permalink
Merge pull request #38 from chrisburr/add-server-deps
Browse files Browse the repository at this point in the history
Add HTCondor packages
  • Loading branch information
chrisburr authored May 19, 2021
2 parents 0fe7991 + 9a78f7f commit 736b858
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ jobs:
fail-fast: false
matrix:
docker-image:
- "centos:6"
- "centos:7"
- "centos:8"
steps:
Expand Down
2 changes: 2 additions & 0 deletions construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ specs:
- apache-libcloud
- boto3
- gfal2-util
- htcondor-utils # [linux64]
- nordugrid-arc
- python-gfal2
- python-htcondor # [linux64]
- voms
# Others
- diraccfg
Expand Down
22 changes: 22 additions & 0 deletions tests/test_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,26 @@ if ! (singularity --verbose --debug run -u lolcow || (singularity --verbose --de
rc=1;
fi

# For HTCondor
if ! condor_submit -help; then
echo "condor_submit -help not working";
rc=1;
fi
if ! condor_history -help; then
echo "condor_history -help not working";
rc=1;
fi
if ! condor_q -help; then
echo "condor_q -help not working";
rc=1;
fi
if ! condor_rm -help; then
echo "condor_rm -help not working";
rc=1;
fi
if ! condor_transfer_data -help; then
echo "condor_transfer_data -help not working";
rc=1;
fi

exit $rc

0 comments on commit 736b858

Please sign in to comment.