mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[PR #2116] [MERGED] Updated files for support ALPINE v3.17 #2342
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#2342
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/s3fs-fuse/s3fs-fuse/pull/2116
Author: @ggtakec
Created: 2/19/2023
Status: ✅ Merged
Merged: 3/5/2023
Merged by: @ggtakec
Base:
master← Head:support_alpine📝 Commits (1)
a3bfc6aUpdated files for support ALPINE v3.17📊 Changes
5 files changed (+68 additions, -20 deletions)
View changed files
📝
.github/workflows/ci.yml(+1 -0)📝
.github/workflows/linux-ci-helper.sh(+48 -11)📝
autogen.sh(+3 -2)📝
src/curl.cpp(+4 -1)📝
test/integration-test-main.sh(+12 -6)📄 Description
Relevant Issue (if applicable)
#2046 #2110
Details
Enabled to execute Github Actions(CI) for ALPINE(v3.17).
This change includes the following changes:
linux-ci-helper.shChanged from
bashtosh. (because the initial image of ALPINE does not includebash)Created a condition for ALPINE and made modifications accordingly.
autogen.shALPINE's
autoconfis new and needs to be updated inconfigure.ac.However, some supported older OS's don't support the new KEYWORDS in configure.ac, so I've added
autoupdatedfor it.curl.cppChanged
CURLOPT_PUTtoCURLOPT_UPLOAD.CURLOPT_PROGRESSFUNCTIONshould be changed toCURLOPT_XFERINFOFUNCTION, but it was not changed because we have an OS that uses old curl.Compiling on ALPINE will output a warning, which can be ignored.
integration-test-main.sh
In ALPINE, the
ENOTSUPerror is output asNot supportedinstead ofOperation not supported, so it have been fixed.test_overwrite_existing_file_rangewas doing file comparison with redirection, which often failed in ALPINE.This error has been eliminated by creating a real file for this comparison, so this has been fixed.
(This fix does not affect testing.)
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
consttoconstexpr#2486