travis: Move glibc backwards in time#39198
Merged
bors merged 1 commit intorust-lang:masterfrom Jan 21, 2017
Merged
Conversation
This commit updates the compilers for many of the artifacts that we're producing on Travis. These compilers are all compiled by crosstool-ng as they're currently done for the images in which we're building all our cross compiled compilers. The purpose of this commit is that when we ship binaries the artifacts won't require a newer glibc, but rather be as compatible as possible with Linux distributions by working with a very old version of glibc. This commit always allocates a new matrix entry for the i686/x86_64 builder. This builder is dedicated to just producing artifacts and eventually we'll expand it to building other tools like Cargo and the RLS. The other builders testing i686 and x86_64 won't use these historical toolchains.
Contributor
|
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
Member
Author
|
cc @japaric |
Member
Author
|
r? @brson |
38 tasks
Contributor
|
@bors r+ |
Collaborator
|
📌 Commit 0a7420a has been approved by |
japaric
approved these changes
Jan 20, 2017
tamird
reviewed
Jan 30, 2017
| If you have a `linux-cross` image lying around you can use that and skip the | ||
| next two steps. | ||
|
|
||
| - First we spin up a container and copy `build_toolchain_root.sh` into it. All |
Member
There was a problem hiding this comment.
This text came from rust-buildbot, and you can find the script there. I suppose it should be copied into this repo though.
Member
Author
There was a problem hiding this comment.
Ah yeah I should update this comment. Now the process would look like:
- Run
./src/ci/docker/run.sh $your-image - Wait for crosstool-ng to get compiled
docker run -it --entrypoint bash $container_id
And then you work manually like that.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This commit updates the compilers for many of the artifacts that we're producing
on Travis. These compilers are all compiled by crosstool-ng as they're currently
done for the images in which we're building all our cross compiled compilers.
The purpose of this commit is that when we ship binaries the artifacts won't
require a newer glibc, but rather be as compatible as possible with Linux
distributions by working with a very old version of glibc.
This commit always allocates a new matrix entry for the i686/x86_64 builder.
This builder is dedicated to just producing artifacts and eventually we'll
expand it to building other tools like Cargo and the RLS. The other builders
testing i686 and x86_64 won't use these historical toolchains.