-
Notifications
You must be signed in to change notification settings - Fork 0
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
Global CI configs #13
Comments
This could be helpful for testing code against the NSLS-II stack from conda and from master. This in turn could help us when it comes time to release (as we hope that all the API breakage doesn't happen at once 😈 ). I don't like writing this in bash though so maybe xonsh? |
We may also want a build which only uses the NSLS-II conda stack (to really check that our builds will pass muster). |
So there are a couple cases here (on a per package basis):
Maybe we have three files per repo?
|
Continuing with the specification build out: Note that for the NSLS-II conda stuff we need to install the main stack so we can find any dep collisions as they come up. |
Btw, I don't have a strong opinion on this do go with what makes sense.
…On Thu, Aug 3, 2017 at 7:41 PM Christopher J. Wright < ***@***.***> wrote:
@danielballan <https://github.com/danielballan>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#13 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AEDrUfNlJ-iPiRggRYwkojnfkXMwwT76ks5sUlrBgaJpZM4OkKwy>
.
|
Since you tagged me, I'll offer my opinion: keep it simple. You need to install at least one thing from pip, so I suggest you simply install everything from pip using a standard The alternative is an overengineered CI scheme which others will have to maintain someday. I've been simplifying ours lately, and I like the results. |
My only issues with that is a) some things we never get from pip (numpy), b) it means we will always test against bleeding edge code and sometimes we need to straddle released and bleeding edge. How do you handle these issues at NSLS-II? |
Why? You can get numpy from pip, and now that manylinux wheels exist it's as fast as conda. We do this for some bluesky CI builds.
You can install latest stable releases using pip. I don't understand why you say using pip means always testing against bleeding-edge code. |
Ah sorry, I forgot that I could pin pip github to tags (my understanding that some of the NSLS-II stack was not on pypi) |
Right, you'll have to pin databroker to a tag until we put it on PyPI. Bluesky and ophyd are now released on PyPI in the standard way. |
I wish that there was a way for pip+github to got to the latest release |
That would be a GitHub thing. There might be a URL to access that latest tag of a repo. |
But don't burn much time on that -- databroker will be on PyPI soon. :- ) |
Add a script for getting the global ci configs
The text was updated successfully, but these errors were encountered: