Replies: 1 comment
-
| 
         
  | 
  
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
I have this rather big project (that I sadly can't share; will create a reproducer if necessary+possible). It has a bunch of .tar.gz files checked in using git LFS.
When I build this project using cibuildwheel, the resulting version is always dirty, i.e. contains
.dYYYYMMDD. Running a quickbefore-build = "git diff"shows me that all LFS-managed files (and a submodule that contains LFS-managed files itself) are considered "modified". However, the files' contents are fine, their hashes inside/projectinside the container match my host filesystem. git only thinks the files changed, I assume because git-lfs (the command) isn't available inside the container.As a test, I tracked a text file using git LFS and sure enough, the (text) diff for it inside the container is something like
now, how would I go about this?
before-buildwould technically work but is wasteful (and manylinux/musllinux use different package managers)I'm a bit lost as to what I should do now. None of my ideas/options above sound all that great :/
Beta Was this translation helpful? Give feedback.
All reactions