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

CI Review #3606

Closed
wiredfool opened this issue Jan 25, 2019 · 22 comments
Closed

CI Review #3606

wiredfool opened this issue Jan 25, 2019 · 22 comments
Labels
Projects

Comments

@wiredfool
Copy link
Member

With the news that travis has been acquired, I've seen a bunch of discussion about CI platforms, leading to some questions:

  • Is the current CI system covering what we need it to do now?
  • Is it working with our long term goals?

One of the goals that I had originally with Appveyor was to be able to produce our windows binaries off of a CI system, rather than bothering @cgohlke for them every single time, as he's a single point of failure for the entire windows python ecosystem. I'm not sure where we are on the windows testing WRT external dependency completeness or python version coverage. Azure pipelines has now introduced free build time for open source projects, and I believe that the python core is now on that for their packages. I believe that they also do linux builds, but not macos. It may be worth investigating if their environment is any easier to get all the dependencies to build.

@hugovk
Copy link
Member

hugovk commented Jan 26, 2019

It's definitely worth looking into. Building Windows binaries would definitely be great.

More info from GitHub: https://github.blog/2018-09-10-azure-pipelines-now-available-in-github-marketplace/

I've seen a few other projects move over to Azure Pipelines, but haven't looked into it much. It can do Linux, Windows and macOS, and CPython, pip and NumPy are testing those with Azure.

I think our current CI system is doing quite a good job, it'd be nice for all three platforms to be tested in one place, and especially if Azure is faster (with 10 parallel builds).

Right now:

  • Appveyor has just 1 parallel worker and takes ~1h15m for 12 jobs
  • Travis CI has 5 parallel workers and takes ~26m for 24 jobs

From a NumPy discussion:

The "free for open source" tier is 10 concurrent jobs that can run up to 60
minutes each (although the website says 30 minutes), and no limit on
minutes per month. Like the other CI services, it uses YAML files to
define the build and test process. I found the documentation of the YAML
pipeline spec to be large, but still missing a number of small details and
explanations about how features worked together. That said, the build
performance is significantly better than Travis CI and AppVeyor for all 3
platforms, and the convenience of all major platforms going through one
service is very nice. Despite not liking the UI quite as much as Travis
CI, I think Numba will likely switch completely over to Azure assuming the
free offering continues to be this good.

What are our long term goals?

  • Run tests time, with good coverage of supported platforms, Python versions and depedencies
  • Build binaries

@hugovk
Copy link
Member

hugovk commented Jan 27, 2019

I had a play with Azure Pipelines yesterday, adding it to another pure Python (with no C) project. Some notes.

image

  • Templates allow each top-level linux.yml, macos.yml and windows.yml re-use the same config for jobs and also steps (pip uses the same config for Linux and macOS, a bit different config for Windows).

  • There's no caching yet (eg. for pip installs)

As the serial one-worker builds of Appveyor are so slow, the biggest benefit for us would be to get Windows builds onto Azure.

There's nothing to stop us having more than one CI running, especially whilst trying things out. Pip are still using Travis, Appveyor and Azure, with the first two marked as "required" for PRs.

@hugovk hugovk mentioned this issue Feb 21, 2019
1 task
@hugovk
Copy link
Member

hugovk commented Feb 21, 2019

See #3670 for a first step to get the plumbing installed.

@hugovk
Copy link
Member

hugovk commented Mar 6, 2019

#3670 is merged to add config to the repo.

I've created an org and project at https://dev.azure.com/python-pillow/pillow/

@python-pillow/pillow-team I'll add you as admins, please let me know your Azure (https://azure.microsoft.com) sign-in address or display name (either here or privately via https://github.com/orgs/python-pillow/teams/pillow-team or email).

@aclark4life
Copy link
Member

Weee thanks @hugovk. Looks like I'm aclark4life@hotmail.com.

screenshot 2019-03-06 09 56 49

@hugovk
Copy link
Member

hugovk commented Mar 6, 2019

@aclark4life Added!

Please could you add a new CI "pipeline"? Something like this:

  1. At https://dev.azure.com/python-pillow/pillow/_build click "New pipeline"
  2. Select GitHub (do OAuth)
  3. Select python-pillow/Pillow
  4. Select "Existing Azure Pipelines YAML file"
  5. Install the Azure Pipelines GitHub App to this repository (above of the YAML)
  6. After installed, select the project at Azure
  7. Click "Run"
  8. That should save it and trigger the first build

@aclark4life
Copy link
Member

Thanks, looks like it's doing something.

screenshot 2019-03-06 10 42 35

@hugovk
Copy link
Member

hugovk commented Mar 6, 2019

Thanks, it's working!

I rebased PR #3661 to test automated builds, and that's working too:

image

https://dev.azure.com/python-pillow/pillow/_build/results?buildId=2

@hugovk
Copy link
Member

hugovk commented Mar 6, 2019

In the time it took for 12 Azure jobs to finish (5m 43s), 6 Travis jobs finished (full build 21m 29s), and the first AppVeyor job was still going (full build ~63m).

TODO:

  • Get Windows builds onto Azure, remove AppVeyor
  • Get coverage working from Docker builds on AP, remove Docker from Travis
  • Get non-Docker builds onto Azure, remove Travis (or, because Travis is more familiar and contributors are more likely to enable it, reduce matrix to most important jobs)

@aclark4life aclark4life added the Platform A catchall for platform-related label May 11, 2019
@aclark4life aclark4life added this to Backlog in Pillow May 11, 2019
@aclark4life aclark4life moved this from Backlog to In progress in Pillow May 11, 2019
@aclark4life
Copy link
Member

Do we have a way to skip Azure builds per commit?

@hugovk
Copy link
Member

hugovk commented May 11, 2019

We can now skip Azure Pipelines builds using any of these:

  • [skip ci] or [ci skip]
  • skip-checks: true or skip-checks:true
  • [skip azurepipelines] or [azurepipelines skip]
  • [skip azpipelines] or [azpipelines skip]
  • [skip azp] or [azp skip]
  • ***NO_CI***

Re: microsoft/azure-pipelines-agent#1270 (comment)

BUT for some reason Microsoft decided to ignore it on what they call "PR builds", and only honour it for what they call "CI builds". They've decided they know better and that builds will be run for PRs even when we specifically add [CI skip].

Re: microsoft/azure-pipelines-agent#1270 (comment)

We need to suggest they make it consistent with Travis, AppVeyor, etc.:

If adding an option to skip PR builds is feature you would like to see, please be sure to suggest a feature on Developer Community!

Re: microsoft/azure-pipelines-agent#1270 (comment)

@hugovk
Copy link
Member

hugovk commented Aug 23, 2019

@aclark4life Please could you put python-pillow on the waitlist for the GitHub Actions beta?

It looks good, very similar to Azure Pipelines for CI with a huge 20 parallel build jobs (compared to AP's 10, Travis 5, AppVeyor 1).

@wiredfool
Copy link
Member Author

wiredfool commented Aug 23, 2019

@hugovk, I just pushed the button for the beta.

I’m kind of excited to get this set up on a day job repo to see how it goes, we’ll see who gets it first.

@hugovk
Copy link
Member

hugovk commented Aug 23, 2019

Thanks!

It took 6 months for my account to be approved, but hopefully it won't be so long for new signups, as they're launching in November.

Good luck setting up the day job repo, have a look at hugovk/pypistats#70 for tips.

@wiredfool
Copy link
Member Author

wiredfool commented Aug 27, 2019 via email

@hugovk
Copy link
Member

hugovk commented Sep 11, 2019

Looks like it's not enabled yet for this org, there's no GitHub Actions showing for #4058:

image

On my account, I see this:

image

I think you need to request access separately for each user and organisation from the dropdown at https://github.com/features/actions/signup/?account=python-pillow.

@hugovk
Copy link
Member

hugovk commented Sep 22, 2019

GitHub Actions is enabled, here's some PRs to replicate the Travis builds:

@nulano
Copy link
Contributor

nulano commented Nov 3, 2020

Discussion about Travis CI continued in #5028.

@hugovk
Copy link
Member

hugovk commented Mar 23, 2021

I just heard about Oregon State University's Open Source Lab, they offer services for open-source projects, perhaps something here could help replace the unique CPUs from Travis?

https://osuosl.org/services/

@aclark4life
Copy link
Member

@hugovk What do we need? I worked with them a while back on some @plone infrastructure but I don't remember exactly how it turned out, aside from @plone was paying for some of it and didn't want to spend as much as I wanted OSU to buy 😄 In any event, if you want to summarize I'll submit a request here: https://osuosl.org/request-hosting/

@radarhere
Copy link
Member

Just to state it in this issue - if Travis CI ever does run out of credits, python-pillow/pillow-wheels#247 can be used to move the aarch64 jobs to GitHub Actions, albeit with a much longer execution time.

@radarhere
Copy link
Member

Pillow 9.3.0 has just been released - the first release with Windows wheels generated by our CIs.

Pillow automation moved this from In progress to Closed Oct 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Pillow
  
Closed
Development

No branches or pull requests

5 participants