-
Notifications
You must be signed in to change notification settings - Fork 853
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
All development and new releases blocked: migrating from Travis to some other CI provider #422
Comments
Going see this one through before starting any migration process: #366 |
It seems that Travis is ignoring also much larger projects so it doesn't look like I could use Travis in the future considering that I run this project mostly alone and I would need most likely millions of "Travis credits" per year to keep the builds running.
You can find a lot more similar issues via Github search in other repositories. Github Actions, Azure Pipelines and CircleCI are probably worth taking a look at as alternatives. |
Current situation is that Travis removed for some reason all the credits I already had in place (#366 (comment)). Due to this, I cannot run any Linux or macOS builds. I won't be doing any development effort towards this project during this month. There will be no new releases, PRs will not be reviewed etc. If there is some relevant issues / comments, I might answer to them. I'll check in January 2021 if it is possible to continue the project via alternative CI solutions. |
It seems we have a final confirmation that Travis has stopped all OSS credit allocations: https://twitter.com/james_hilliard/status/1336081776691843072 |
From my experience the two most popular alternatives are:
Edit: Per #366 (comment) a close reading of the GitHub actions docs does make it seem that public repos are not counted against the limit. |
I guess Github Actions is the best option since there are no limits for open source projects. The only issue I see is that ARM builds cannot be done currently, but ARM runners should be available during Q1 2021: github/roadmap#95. |
It #95 is now closed. But to be honest it's not 100% clear for me. Does it mean the integration to ARM build can be done now ? |
It seems that the Github roadmap was modified and ARM support was not implemented (check the roadmap issue edit log) so the ARM issue remains for future builds. There are already |
Sorry I failed with this apple/tensorflow_macos#67 (comment) (I'm not an experienced python dev) Is there a better way ? |
There are no ARM wheels for the latest macOS devices. |
I did a look on current If there would be the build reduced to a single script (eg here), without variable handling in CI script, a jump from one CI-system to an other CI-system would be much more easy ! (A jump to Github action will be not the last one in the future) But I'm not able to build such a script, I've too less knowledge what's to do on openCV here. -sorry- |
The build matrix needs various variables and they need to be defined somewhere. Usually, the place is the CI system config file (SDIST means source distribution which is by default false since it needs to be created just once for each package variant). Please note that there's no way to build ARM wheels for macOS currently because build infrastructure and tooling lags behind. Similarly, NumPy is a hard dependency for the OpenCV builds, and also they are missing pre-built macOS ARM wheels. Apple Silicon is such a new platform that it takes some time to get the whole software ecosystem in sync with it. |
It looks like OpenCV 4.5.2 was just released: https://github.com/opencv/opencv/releases/tag/4.5.2 |
@johnthagen Yes, Alalek pushed tags to the repository and published binaries. @sergregory Is working on Python packages right now. |
#470 changes the build infrastructure from Travis & Appveyour to Github Actions. However, with this transition we miss:
|
For what it's worth (single user), I think x86 (I presume you mean 32-bit vs x86-64) is fine to drop. In my mind having a health CI system is much more valuable. If people really need x86, they can still build from sdist? For example, you can't even download official Ubuntu 32-bit ISOs any longer. |
Now that 4.5.2 has been successfully released, should this issue be closed? https://pypi.org/project/opencv-python/4.5.2.52/ |
Finally migrated to Github Actions. |
Background: https://www.jeffgeerling.com/blog/2020/travis-cis-new-pricing-plan-threw-wrench-my-open-source-works
It's not possible to use Travis to build the Linux and macOS wheels due to changes in Travis pricing.
To do:
Related issues:
#421
The text was updated successfully, but these errors were encountered: