-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Unable to reuse cached tools on arch armv7 (Raspberry) #793
Comments
Hello @louislam ! Thank you for creating the issue and the PR :) We will investigate them and see what can be done |
Hello @louislam. The pull request was merged. Could you please try to use For now I'm going to reopen the issue because I'd like to close when the new version of setup-node is released. |
@dmitry-shibanov I can confirm it is fixed, it is now looking for |
Tested 3.8.0 and double confirmed that it has been fixed. |
Description:
On armv7, setup-node will download Node.js from official and extract to
_work/_tool/node/18.16.1/armv7l
.However, setup-node is searching for the cache in
_work/_tool/node/18.16.1/arm
instead of_work/_tool/node/18.16.1/armv7l
. As a result, it can never hit the cache.My current workaround:
Manually rename the directory from
armv7l
toarm
,setup-node
will be able to use cached tool in the next run.Log: https://github.com/louislam/uptime-kuma/actions/runs/5456311185/jobs/9928952991?pr=3354
The image shows that the directory name do not match.
Action version:
4.305.0
Platform:
Runner type:
Tools version:
Repro steps:
Option 1:
In case you don't have such hardware. You can fork this pr and create pr on my repo if you want to test: louislam/uptime-kuma#3354. The job
armv7-simple-test (ARMv7, 16)
is always reproducible.Option 2:
Expected behavior:
Node.js could be reuse in the next run.
Actual behavior:
Node.js will be downloaded for every run, the cached tool is never used.
The text was updated successfully, but these errors were encountered: