Build -gnu targets on ubuntu-20.04 #607
Merged
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.
In a dockerfile I have
rust_target=$(rustc -vV | awk '/^host:/{ print $2 }') && curl https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-$rust_target.tgz
; it broke with the most recent release because therust:1.65
image has glibc 2.31 and the 0.18.0 release built on ubuntu-22.04 (build log), which has a more recent version (2.35?). This commit pins it to 20.04, so the glibc version required by the release binaries remains lower. (If possible, a 0.18.1 release to fix this would be really nice, or otherwise I can use a workaround for now)