Skip to content

INF-2962: install Pelican client with debug symbols #196

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -44,9 +44,15 @@ RUN useradd osg \
# Pull HTCondor from the proper repo. For "release" we need to use
# osg-upcoming-testing to meet the patch tuesday requirements.
RUN if [[ $BASE_YUM_REPO = release ]]; then \
yum -y --enablerepo=osg-upcoming-testing install condor; \
yum -y --enablerepo=osg-upcoming-testing install condor && \
if /usr/local/bin/pkg-cmp-gt.sh condor 23.10.26; then \
yum -y --enablerepo=osg-upcoming-testing swap pelican pelican-debug; \
fi; \
else \
yum -y install condor; \
yum -y install condor && \
if /usr/local/bin/pkg-cmp-gt.sh condor 23.10.26; then \
yum -y swap pelican pelican-debug; \
fi; \
fi

# Install an alternate back-version of apptainer with support for registry mirrors,