-
Notifications
You must be signed in to change notification settings - Fork 245
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
Github Key Access Issue[Bug]: #436
Comments
Are you able to clone it with HTTPS instead? |
I haven't tried that, will do so and then report back. Thanks! |
That worked! Just to make sure I tried the right command, I've pasted it below: git clone --filter=blob:none https://github.com/Ironclad/rivet.git |
Not sure why SSH isn't working for you for this, will double check access anyway |
Not sure, although I don't doubt the possibility I've not configured something correctly on this laptop. I followed the rest of the Build instructions as follows: After executing yarn dev I get few warnings, none fatal, but near the ends I got this message: error[E0282]: type annotations needed for For more information about this error, try after entering rustc --explain E0282, I get this: The compiler could not infer a type and asked for a type annotation. Erroneous code example: let x = Vec::new(); This error indicates that type inference did not result in one unique possible type, and extra information is required. In the example above, type Vec has a type parameter T. When calling Vec::new, barring any other later usage of the The type can be specified on the variable: let x: Vec = Vec::new(); The type can also be specified in the path of the expression: let x = Vec::::new(); In cases with more complex types, it is not necessary to annotate the full type. Once the ambiguity is resolved, the let x: Vec<_> = "hello".chars().rev().collect(); Another way to provide the compiler with enough information, is to specify the generic type parameter: let x = "hello".chars().rev().collect::<Vec>(); |
Not sure, maybe you have an old Rust version installed. That's a dependency that's failing to compile, nothing Rivet-specific |
Ah ok, good to know. I'll run an update with rustup and see if that fixes the issue. |
Checked and confirmed my current version of Rust is: rustc 1.80.0 |
That worked, the build finished just with these errors: libEGL warning: failed to open /dev/dri/renderD128: Permission denied ** (rivet:74584): WARNING **: 18:20:26.270: webkit_settings_set_enable_offline_web_application_cache is deprecated and does nothing. Probably another missing dependency. However, the fix in that link fixed the issue and it was successfully built. I'm running it on my laptop right now. Thanks again! |
Quick question: This worked and built a version of Rivet that runs in my WSL environment. What if I wanted to build a version of Rivet that's for Windows, not Ubuntu? |
Same instructions should work |
They did. Thanks again! |
What happened?
I'm trying to build my own Rivet from source but am encountering some issues. I've been following the instructions on the CONTRIBUTIONS.md page however when I enter this command:
git clone --filter=blob:none [email protected]:Ironclad/rivet.git
I get this error:
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I have already gone into my .ssh folder and created a new key to make sure there were no errors. The new key has been added to my ssl agent, which is running. I'm not ruling out that I may have made an error but wanted to confirm if this is a security access issue associated with the Rivet project.
Thanks!
What was the expected functionality?
I've made sure to install all the dependencies, like Rust (using rustup), Node (v20.10.0), etc. Have followed the online documentation to the letter.
Describe your environment
WSL2, Node v20.10.0
Relevant log output
No response
Relevant screenshots
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: