fix(node): set rust toolchain/job runner to a fix value #1257
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently CI is auto using latest ubuntu, which is now 24.04. This version of ubuntu is using glibc 2.39 and causing the debian image to fail as it only supports 2.36. This PR mainly downgrade ubuntu to 22.04 so that the image can be built correctly.
At the same time, fixing the rust toolchain to align with that specified in
![image](https://private-user-images.githubusercontent.com/108330426/405517637-2e30daea-abae-4a05-938e-6d9a733f9c4a.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0MTkwNDIsIm5iZiI6MTczOTQxODc0MiwicGF0aCI6Ii8xMDgzMzA0MjYvNDA1NTE3NjM3LTJlMzBkYWVhLWFiYWUtNGEwNS05MzhlLTZkOWE3MzNmOWM0YS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxM1QwMzUyMjJaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05MTZhOGJkYmQ3ZDJiZmVhN2E0YzkyYjllNzVhZmQzOTE0Nzc0YzBjZDg4ZDJkODI1NzQyOWY1N2RmMGY2MWFjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.41oiOf1LFd6qFtSYHWNlOeuxskaEmAtJMgdM_GBanT8)
toolchain.toml
. Currently if we up the rust version to 1.84.0, some updated crates requires glibc 2.39, such as:Also fixing the CI to have the same rust version as toolchain also makes the environments aligned.