Skip to content
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

Use --release-channel=stable by default on releases #33971

Merged

Conversation

bltavares
Copy link
Contributor

Release tarballs should be compilable with just basic ./configure ;
make ; sudo make install without having to pass special flags to
configure. This is the case of the --release-channel option, that must
be changed in the releases.

This commit detects the presence of .git, as it happens on other parts
of configure to assume it is a tarball. Then it changes the default
value stored, before parsing the arguments, while still allowing it to
be overriden before any action verifying the flag is done.

Closes #28322

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @nikomatsakis (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@alexcrichton
Copy link
Member

r? @brson

Just to double check, you've confirmed this works locally, right?

@rust-highfive rust-highfive assigned brson and unassigned nikomatsakis May 31, 2016
@bltavares
Copy link
Contributor Author

@alexcrichton Yes, I've removed the .git file and noticed the change on the default.

Reviewing this change, I think this could be even better if the check happens closer to the other statement which sets the default to dev. I will do the change here and update the code if that is ok.

@bltavares bltavares force-pushed the 28322/default-channel-to-stable-on-tarball branch from d903fbc to f4469bb Compare May 31, 2016 11:56
@alexcrichton
Copy link
Member

Sounds reasonable to me!

@bltavares
Copy link
Contributor Author

The build failed because it couldn't find llvm-tools. Is there a way to trigger it again?

E: Unable to locate package llvm-3.7-tools
E: Couldn't find any package by regex 'llvm-3.7-tools'
The command "sudo apt-get --force-yes install curl make g++ python2.7 git zlib1g-dev libedit-dev llvm-3.7-tools" failed and exited with 100 during .

@brson
Copy link
Contributor

brson commented May 31, 2016

Seems ok, though as written one won't be able to change the release channel at all on tarballs. Also, existing packagers are going to get build errors in their existing scripts because --release-channel is no longer an option at all, and they are going to be specifying it. Can we make this option continue to work, or to be a no-op for tarballs (maybe printing a warning that it is deprecated)?

@bltavares
Copy link
Contributor Author

I was able to test it locally, and this change will not break the current interface. It is still possible to change the release channel when it is a tarball extraction.

Here are the tests I did:

$ test -e .git && ./configure | grep RELEASE
configure: CFG_RELEASE_CHANNEL  := dev

$ test -e .git && ./configure --release-channel='beta' | grep RELEASE
configure: CFG_RELEASE_CHANNEL  := beta

$ mv .git .git.backup

$ test ! -e .git && ./configure | grep RELEASE
configure: CFG_RELEASE_CHANNEL  := stable

$ test ! -e .git && ./configure --release-channel=nightly | grep RELEASE
configure: CFG_RELEASE_CHANNEL  := nightly

@brson
Copy link
Contributor

brson commented May 31, 2016

Oh, indeed. I misread the patch.

@bors r+

@bors
Copy link
Collaborator

bors commented May 31, 2016

📌 Commit f4469bb has been approved by brson

@bors
Copy link
Collaborator

bors commented May 31, 2016

⌛ Testing commit f4469bb with merge 43ce274...

@bors
Copy link
Collaborator

bors commented May 31, 2016

💔 Test failed - auto-linux-64-cross-armhf

@bltavares
Copy link
Contributor Author

The failure seems to be unrelated to the change. It failed on the clean task, trying to compile a crate. I've seen this error when the target folder is not properly cleaned.

Is it possible to trigger the test again?

On May 31, 2016 7:48:28 PM GMT-03:00, bors notifications@github.com wrote:

💔 Test failed -
auto-linux-64-cross-armhf


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#33971 (comment)

Sent from my Android device with K-9 Mail. Please excuse my brevity.

@alexcrichton
Copy link
Member

@bors: retry

On Tue, May 31, 2016 at 4:09 PM, Bruno Lara Tavares <
notifications@github.com> wrote:

The failure seems to be unrelated to the change. It failed on the clean
task, trying to compile a crate. I've seen this error when the target
folder is not properly cleaned.

Is it possible to trigger the test again?

On May 31, 2016 7:48:28 PM GMT-03:00, bors notifications@github.com
wrote:

💔 Test failed -
auto-linux-64-cross-armhf


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#33971 (comment)

Sent from my Android device with K-9 Mail. Please excuse my brevity.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#33971 (comment), or mute
the thread
https://github.com/notifications/unsubscribe/AAD95OlsLiCsBVrt7gS-1RLQfMXXQ_gbks5qHL-NgaJpZM4IqBf_
.

@Manishearth
Copy link
Member

Travis fails

@bltavares bltavares force-pushed the 28322/default-channel-to-stable-on-tarball branch from f4469bb to 6ceb42d Compare June 1, 2016 11:06
@bltavares
Copy link
Contributor Author

@Manishearth Travis is failing because LLVM APT repository has been turned off temporarily

Accessing http://llvm.org/apt/, we are welcome with the following message:

APT mirror was temporary switched off due to excess load. We are working on bringing it back. Stay tuned!

@bltavares
Copy link
Contributor Author

Triaging this error further, for documentation:

There is an announcement on the LLVM list that the APT source has been disabled
http://lists.llvm.org/pipermail/llvm-dev/2016-May/100303.html

This mean that every Travis CI build on Pull Requests will fail until the repo is back online.

I've tried a few alternatives locally to unblock this, without much success.

1- Download the precompiled Ubuntu Trusty dist from llvm.org
The precompile dist does not include the extra tools.

2- Download llvm-3.7-tools from Ubuntu Willy manually
The llvm-3.7-tools is available on Wily's repo: http://packages.ubuntu.com/wily/llvm-3.7-tools
I've tried to manually download the packages to install just llvm, but the dependencies on libc could not be resolved.

3- Add Ubuntu Wily APT repository
There is a risk of adding many other updated packages that is not compatible to Trusty.
There are a few warnings caused by unrelated packages not supporting the arch.

So far it has been the best short term option. I will open a pull request with the change to further discuss that.

> Release tarballs should be compilable with just basic ./configure ;
> make ; sudo make install without having to pass special flags to
> configure. This is the case of the --release-channel option, that must
> be changed in the releases.

This commit detects the presence of .git, as it happens on other parts
of `configure` to assume it is a tarball. Then it changes the default
value stored, before parsing the arguments, while still allowing it to
be overriden before any action verifying the flag is done.

Closes rust-lang#28322
@bltavares bltavares force-pushed the 28322/default-channel-to-stable-on-tarball branch from 6ceb42d to 970f8d8 Compare June 12, 2016 23:02
@bltavares
Copy link
Contributor Author

Rebasing with upstream to get the changes Travis configuration changes.

@brson
Copy link
Contributor

brson commented Jul 11, 2016

@bors r+

@bors
Copy link
Collaborator

bors commented Jul 11, 2016

📌 Commit 970f8d8 has been approved by brson

@bors
Copy link
Collaborator

bors commented Jul 12, 2016

⌛ Testing commit 970f8d8 with merge 3265bd5...

bors added a commit that referenced this pull request Jul 12, 2016
…arball, r=brson

Use --release-channel=stable by default on releases

> Release tarballs should be compilable with just basic ./configure ;
> make ; sudo make install without having to pass special flags to
> configure. This is the case of the --release-channel option, that must
> be changed in the releases.

This commit detects the presence of .git, as it happens on other parts
of `configure` to assume it is a tarball. Then it changes the default
value stored, before parsing the arguments, while still allowing it to
be overriden before any action verifying the flag is done.

Closes #28322
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants