Skip to content
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

Update xrds3 to v0.1.6 to fix S3 multipart PUTs #1572

Merged
merged 2 commits into from
Aug 28, 2024
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 github_scripts/osx_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ sudo mkdir -p /etc/xrootd/client.plugins.d/
sudo cp release_dir/etc/xrootd/client.plugins.d/pelican-plugin.conf /etc/xrootd/client.plugins.d/
popd

git clone --recurse-submodules --branch v0.1.4 https://github.com/PelicanPlatform/xrootd-s3-http.git
git clone --recurse-submodules --branch v0.1.6 https://github.com/PelicanPlatform/xrootd-s3-http.git
pushd xrootd-s3-http
git checkout v0.1.4
git checkout v0.1.6
mkdir build
cd build
cmake .. -GNinja -DCMAKE_INSTALL_PREFIX=$PWD/release_dir
Expand Down
2 changes: 1 addition & 1 deletion images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ ADD https://api.github.com/repos/PelicanPlatform/xrootd-s3-http/git/refs/heads/m
RUN \
git clone --recurse-submodules https://github.com/PelicanPlatform/xrootd-s3-http.git && \
cd xrootd-s3-http && \
git checkout v0.1.4 && \
git checkout v0.1.6 && \
mkdir build && cd build && \
cmake -DLIB_INSTALL_DIR=/usr/lib64 .. && \
make install
Expand Down
2 changes: 1 addition & 1 deletion images/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ADD https://api.github.com/repos/PelicanPlatform/xrootd-s3-http/git/refs/heads/m
RUN \
git clone --recurse-submodules https://github.com/PelicanPlatform/xrootd-s3-http.git && \
cd xrootd-s3-http && \
git checkout v0.1.4 && \
git checkout v0.1.6 && \
mkdir build && cd build && \
cmake -DLIB_INSTALL_DIR=/usr/lib64 .. && \
make install
Expand Down
Loading