-
Notifications
You must be signed in to change notification settings - Fork 428
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
Migrate Travis CI by May 31, 2021 #740
Comments
Added a barebone config file for github action. Need to support Python and ARM as well. Will figure that out later. |
BTW, I would like to replace Travis with GitHub actions. Don't want to deal with two CIs. CC @jmarshall: I just copied your ci.yaml in bwa to here for minimal CI functionality. |
I am not sure if we can run ARM on GitHub Actions CI hosting service. I know GitHub Actions self runner that is to install and run GitHub Actions on your own server, supporting ARM. But maybe I think you do not want to do it. |
Ah, this is more complicated than I thought. Need to read and think more... |
Python/Cython is reasonably easy — have a look at my draft for pysam. Perhaps set up your Cython test build as a separate job from the C compilation ones. But what to do for the more exotic architectures is a harder question… |
Just in case, I would share my repository I used to test |
Me, I don't see a reason to continue to trust the Travis company. So to the extent that the non-x86 parts of the existing .travis.yml can be moved to .com and work as-is for a while, that's fine; but I wouldn't expend any further effort on building anything travis-dependent. |
@jmarshall That's okay. I think the current trend of dropping free plans on CI is coming from crypto miners using the free CI to gain the profits by running their programs on CI. It costs CI companies. It's not only Travis CI. Travis is not a big company unlike GitHub or Microsoft. I think Travis had to make a tough decision. To change the situation, we need to change the way for the miners to gain the profit, the incentivized system. There is a hope to change the situation, because some stakeholders recognize this. https://layerci.com/blog/crypto-miners-are-killing-free-ci/ Travis' way to communicate with users was not really the best. I think they could be more transparent. The free unlimited builds for non-AMD was also published to their official document last week. I do not think the situation will change soon. The reason is because Travis CI is sponsored for the non-AMD resources by IBM and ARM. I have discussed Travis support to make it possible until last week. |
[This is increasingly off-topic for minimap2.] IMHO the writing was on the wall for Travis CI GMBH two years ago. More recent events have only confirmed this assessment, sadly. |
[Sorry for the off topic that not related to the minimap2.] |
I recently had to do this travis to GitHub action conversion for (f5c)[https://github.com/hasindu2008/f5c/]. With that experience, I added simple ARM and Python tests to the GitHub actions files on minimap2 [see pull request https://github.com//pull/741] which I hope would be helpful to expand upon :). |
@hasindu2008 Thanks for the PR, if this project accepts the way to use QEMU and Docker, it is a possible way. The tool multiarch/qemu-user-static used in the PR is what I had worked on a little bit at the project. I think the project Now it seems there are some derived alternatives too. I have not used https://github.com/dbhi/qus |
Hi. I see this repository uses travis-ci.org.
Travis CI announced 2 days ago that Travis-ci.org shut down will occur on May 31, 2021.
https://blog.travis-ci.com/2021-05-07-orgshutdown
We need to migrate travis-ci.org to travis-ci.com, otherwise maybe we can not continue to use it. You can do it from this repository's Setting page.
AMD64 is not free on travis-ci.com. You will be given the credits initially. AMD64 consumes the credits.
https://docs.travis-ci.com/user/billing-overview/#usage---credits
Fortunately non-AMD64 (
arch: arm64
,arch: ppc64le
,arch: s390x
) is still free for open source repository.A migration path I can recommend is
Here is an example of travis-ci.com credits page. You can check a history of builds with consumed credits.
https://travis-ci.community/t/free-oss-credits-usage-calculation/10832/4
Here is an example of GitHub Actions I know as a reference.
https://github.com/brianmario/mysql2/blob/master/.github/workflows/build.yml
https://github.com/ruby/ruby/tree/master/.github/workflows
The text was updated successfully, but these errors were encountered: