We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While working on esp-rs/xtensa-toolchain#30, noticed that the xtensa-toolchain started failing (its trying to install 1.64.0.0), looking at the workflow and the reply of the github api request (https://api.github.com/repos/esp-rs/rust-build/releases) we see that the requested version is not there as gh only gives 9 latest releases.
xtensa-toolchain
1.64.0.0
We can install any version, no matter how old it is.
The text was updated successfully, but these errors were encountered:
per_page should be set to 30 by default, does explicitly specifying a value for this in the request (e.g. 100) resolve the issue?
per_page
Sorry, something went wrong.
Yes, using:
-const XTENSA_RUST_API_URL: &str = "https://api.github.com/repos/esp-rs/rust-build/releases"; +const XTENSA_RUST_API_URL: &str = + "https://api.github.com/repos/esp-rs/rust-build/releases?page=1&per_page=1000";
seems to solve the issue
SergioGasquez
Successfully merging a pull request may close this issue.
Bug description
While working on esp-rs/xtensa-toolchain#30, noticed that the
xtensa-toolchain
started failing (its trying to install1.64.0.0
), looking at the workflow and the reply of the github api request (https://api.github.com/repos/esp-rs/rust-build/releases) we see that the requested version is not there as gh only gives 9 latest releases.Expected behavior
We can install any version, no matter how old it is.
The text was updated successfully, but these errors were encountered: