-
-
Notifications
You must be signed in to change notification settings - Fork 6
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 for Apple M1 Silicon chip architecture #17
Comments
After a little research, I think I found a way for this to work on my new machine, by adding a specific value for the
This command seems to run without any warnings, which is quite hopeful. |
While the container was able to run, I'm not sure of the video conversion process is actually working correctly, as I get this error when I try to run the
|
It looks like we might need to build a Multi-Arch image: https://www.docker.com/blog/multi-arch-images/ |
I'm testing the building pipeline for platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x |
Container build repeatedly fails hitting Rate limits for GitHub Apps. Failure is on command I added the GITHUB_TOKEN secret without success. I opened a issue report to the github action without success docker/build-push-action 403 api rate limit #605 . The full error could be seen in the latest built: https://github.com/lucab85/avg/actions
|
@lucab85 I am definitely not an expert on this so please don't take this as steps to perform. That said, I wonder if it could be because you appear to be passing it as a secret |
Someone else (that I shared this issue link with) also asked if Docker Rate Limiting could be a factor as well? |
Hello @tomjenkinson you could find the source code of the installGithub.r executable in the |
I no expert in this area, please use caution when considering my response. My guess is that installGithub.r is not aware of the secret you are trying to pass in. I have a feeling when you have https://github.com/lucab85/avg/blob/devel/Dockerfile#L6-L7 it's more like how an example would work. In this case I think you might be passing the secret to the docker RUN command in a file (as in I did search and found this https://stackoverflow.com/questions/23391839/clone-private-git-repo-with-dockerfile where you can find a reference to using It could be useful to speak with the littler community to understand the right way to pass a token to installGithub.r. |
I would agree with @tomjenkinson - if this is the same installGithub.r (I think it is as the executable linked above is just a wrapper) then it suggests you need to pass an https://www.rdocumentation.org/packages/devtools/versions/1.13.6/topics/install_github |
Please be very careful with your testing to not reveal your github secret. If installGithub.r does use GITHUB_PAT then I think something like this shows a bit how it might be used.
|
I recently switched to a new MacBook Pro powered by the Apple M1 Silicon chipset and I ran into some problems while trying to set up the AVG environment there. Specifically, I got this warning when I ran the
docker run
command:Could it be that we need to build an alternative version of the the base image, that suits the M1 chipset?
The text was updated successfully, but these errors were encountered: