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

support symlinks #93

Open
2 of 6 tasks
Trass3r opened this issue Jul 8, 2020 · 12 comments · May be fixed by #201
Open
2 of 6 tasks

support symlinks #93

Trass3r opened this issue Jul 8, 2020 · 12 comments · May be fixed by #201

Comments

@Trass3r
Copy link

Trass3r commented Jul 8, 2020

Typical native Linux builds contain a lot of symlinks. That inflates the upload times and massively increases the artifact sizes.

##[debug]File: 3393/3605. /opt/clang/lib/libclang-cpp.so.11git took 81461.559 milliseconds to finish upload
##[debug]File: 3394/3605. /opt/clang/lib/libclang-cpp.so took 81832.023 milliseconds to finish upload
##[debug]File: 3395/3605. /opt/clang/lib/libclang.so took 983.696 milliseconds to finish upload
##[debug]File: 3396/3605. /opt/clang/lib/libclang.so.11 took 978.577 milliseconds to finish upload
##[debug]File: 3397/3605. /opt/clang/lib/libclang.so.11git took 993.718 milliseconds to finish upload

Version

  • V1
  • V2

Environment

  • self-hosted
  • Linux
  • Windows
  • Mac

Run/Repo Url
https://github.com/Trass3r/llvm-project/runs/849655143

@Trass3r Trass3r added the bug Something isn't working label Jul 8, 2020
@konradpabjan konradpabjan removed the bug Something isn't working label Jul 8, 2020
@konradpabjan
Copy link
Collaborator

I don't quite understand the problem 🤔 Could you elaborate a little more on what the expected behavior should be?

Looking at your run, the two files libclang-cpp.so.11git and libclang-cpp.so had very very large upload times because they were over 4 MB in size so they were uploaded in chunks (this is normal for large files). They have slightly different logs/output if you look at the output just above your screenshot.

image

The time that you see is the sum of all the calls to upload the individual files.

@Trass3r
Copy link
Author

Trass3r commented Jul 8, 2020

libclang-cpp.so is a symlink to libclang-cpp.so.11git as usual.

@stefanluptak
Copy link

stefanluptak commented Feb 17, 2021

I am running into this too. Is any ETA available, please?

@p--b
Copy link

p--b commented May 10, 2021

As far as I can see, this is because of

followSymbolicLinks: true,
with no available mechanism to override.

Would you accept a small PR to provide a follow-symlinks opt-out as a boolean input, as recommended by https://www.npmjs.com/package/@actions/glob#recommended-action-inputs ?

p--b added a commit to fourieraudio/upload-artifact that referenced this issue May 10, 2021
This commit implements a new boolean input to the action,
`follow-symlinks`. This option configures whether the glob expansion
will follow any symlinks it finds when determining the set of of files
to be archived into the artifact.

The default value of the option, which preserves the existing behaviour,
is `true`. When set to true, symbolic links will be be followed and expanded
If `false`, symbolic links will be included in the archived artifact verbatim.

Users may wish to set this option to false if their artifact contains
internally-referencing symlinks which would result in significant bloat
(and semantic change!) in the source files when the artifact is created.

Resolves: actions#93.
@p--b p--b linked a pull request May 10, 2021 that will close this issue
beraldoleal added a commit to beraldoleal/avocado that referenced this issue Aug 28, 2021
Looks like GH is not accepting symlinks. Lets give this a try.

actions/upload-artifact#93

Signed-off-by: Beraldo Leal <bleal@redhat.com>
beraldoleal added a commit to beraldoleal/avocado that referenced this issue Aug 28, 2021
Looks like GH is not accepting symlinks. Lets give this a try.

actions/upload-artifact#93

Signed-off-by: Beraldo Leal <bleal@redhat.com>
@staronline007
Copy link

Ok, it urgent call for the MTI

@shakfu
Copy link

shakfu commented Apr 4, 2022

I'm not sure it's the same problem but I am finding in v2 that is I have uploaded a macos .bundle which itself contains a .framework bundle and the latter has internal symlinks (Header, Version, etc..), after upload the symlinks are gone and have become duplicate folders of what linked to.

Can someone confirm that this is the same or a similar issue in this case, please?

@antonpirker
Copy link

@shakfu your stated scenario is the same issue.

@wxtim
Copy link

wxtim commented Jul 25, 2023

I've just come across this issue trying to use this action.

@shakfu
Copy link

shakfu commented Jul 25, 2023

@antonpirker

I find this occurs when I use cp -r <src> <dst> instead of cp -a <src> <dst>

@SteveDevOps
Copy link

SteveDevOps commented Oct 6, 2023

This happened to us on nextjs project / next bin path which is a symlink from .bin. By the time build makes it to azure linux appservice, the app can't spin up its container correctly / can't find module because symlink is missing. Background: https://azureossd.github.io/2022/10/18/NextJS-deployment-on-App-Service-Linux/#note-about-symlinks-why-next-start-may-fail-in-certain-deployment-scenarios -- We fixed by putting full path in app startup cmd on appservice. Other way is full path in package.json (instead of just: yarn start or next start)

wato-github-automation bot pushed a commit to WATonomous/watcloud-website that referenced this issue Nov 5, 2023
It turns out that upload-artifacts strips broken symlinks:
actions/upload-artifact#93, so our approach of
generating a broken symlink that gets linked when it gets to gh-pages
doesn't work. We can work around this by using tarring the output before
uploading the artifacts, but it turns out that the "pages build and
deployment" action doesn't support broken symlinks either, because it
uses `--dereference` in its tar command:

<img width="680" alt="image"
src="https://github.com/WATonomous/infra-config/assets/5977478/c78c2152-f989-4dbc-84c2-daf9e4a89347">

The new strategy in this PR is to set up the symlinks only on master and
only in CI.
@soundasleep
Copy link

In #508 the lack of symlink support seems to break MacOS code signatures/notarization. Using tar to compress the folder first seems to work.

@PepeANZ
Copy link

PepeANZ commented Mar 17, 2024

I have opened up a PR to fix this #544

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.