Skip to content

make cvmfs_http_proxy default to DIRECT (v4) #36

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 1 commit into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ inputs:
required: false
default: ''
cvmfs_http_proxy:
description: 'Chain of HTTP proxy groups used by CernVM-FS. Necessary.Set to DIRECT if you don’t use proxies.'
description: 'Chain of HTTP proxy groups used by CernVM-FS. Defaults to DIRECT.'
required: false
default: ''
default: 'DIRECT'
cvmfs_ignore_signature:
description: 'When set to yes, don’t verify CernVM-FS file catalog signatures.'
required: false
Expand Down
4 changes: 0 additions & 4 deletions setup-cvmfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ elif [ "$(uname)" == "Darwin" ]; then
# Warn about the phasing out of MacOS support for this action
echo "::error::The CernVM-FS GitHub Action's support for MacOS has been \
phased out with macos-10.15."
# Temporary fix for macOS until cvmfs 2.8 is released
if [ -z "${CVMFS_HTTP_PROXY}" ]; then
export CVMFS_HTTP_PROXY='DIRECT'
fi
brew install --cask macfuse
curl -L -o cvmfs-latest.pkg ${CVMFS_MACOS_PKG_LOCATION}
sudo installer -package cvmfs-latest.pkg -target /
Expand Down