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 GitHub Actions for CI #776

Merged
merged 27 commits into from
Jul 5, 2022
Merged

Use GitHub Actions for CI #776

merged 27 commits into from
Jul 5, 2022

Conversation

bdice
Copy link
Member

@bdice bdice commented Jun 19, 2022

Description

This PR overhauls our CI configurations to build and test signac with GitHub Actions. We've been planning to move to GitHub Actions for a long time and the breakage of our Windows builds (limited monthly minutes) and limited parallel runners are finally motivating a change here.

Depends on #777.

I'm going to leave CircleCI active (except for the failing Windows jobs) for a little while to ensure a smooth transition.

Before merging:

  • Ensure we have builds for all supported platforms (Linux, macOS, Windows) and configurations (Python versions, oldest/newest dependencies). I have the following:
    • Linux, Python 3.10
    • Linux, Python 3.10 "minimal" (no optional dependencies)
    • Linux, Python 3.9
    • Linux, Python 3.8
    • Linux, Python 3.8 "oldest" (minimum versions of supported dependencies)
    • macOS, some supported Python version
    • Windows, some supported Python version
    • ❌ PyPy. I don't really think we need to keep testing PyPy. If another maintainer would like to add that to the CI, feel free.
    • ❌ Benchmarks. I haven't attempted to port these over from CircleCI. We deleted the CI script for benchmarks from signac 2.0 anyway, because it's not reliable and we want to use asv instead.
  • ❌ Make an attempt at the "deploy to PyPI" logic that should release a source distribution (tarball) and a wheel tagged py3-none-any uploaded from one of those test configurations mentioned above. See https://github.com/pypa/gh-action-pypi-publish
    • I'm going to revisit this at a later time using the wonderful template from @matthewfeickert linked below.
    • We will need to port the check-metadata job and the deploy.bash script.

Motivation and Context

I don't think an issue exists for this but we've been discussing moving to GitHub Actions for a while. Supersedes previous attempt in #773.

Checklist:

@matthewfeickert
Copy link
Contributor

matthewfeickert commented Jun 19, 2022

  • Make an attempt at the "deploy to PyPI" logic that should release a source distribution (tarball) and a wheel tagged py3-none-any uploaded from one of those test configurations mentioned above. See https://github.com/pypa/gh-action-pypi-publish

@bdice Would highly recommend taking advantage of the idea that GHA supports many workflows and make this a separate workflow that is triggered either on a release and/or workflow_dispatch. c.f. pyhf's worfkflow for an example.

@bdice
Copy link
Member Author

bdice commented Jun 20, 2022

I confirmed that the number of tests that pass/skip is the same between CircleCI and GitHub Actions for the Linux tests (newest, oldest, minimal dependencies). This confirms that we're correctly testing what we intend to test with respect to optional dependencies (MongoDB, Redis, etc.).

@codecov
Copy link

codecov bot commented Jun 20, 2022

Codecov Report

Merging #776 (360b898) into master (a9c75e0) will increase coverage by 0.17%.
The diff coverage is n/a.

@@            Coverage Diff             @@
##           master     #776      +/-   ##
==========================================
+ Coverage   78.27%   78.45%   +0.17%     
==========================================
  Files          66       66              
  Lines        7267     7267              
  Branches     1590     1590              
==========================================
+ Hits         5688     5701      +13     
+ Misses       1262     1253       -9     
+ Partials      317      313       -4     
Impacted Files Coverage Δ
signac/contrib/project.py 85.18% <0.00%> (+0.36%) ⬆️
signac/__main__.py 72.08% <0.00%> (+0.44%) ⬆️
...nac/synced_collections/backends/collection_json.py 100.00% <0.00%> (+1.42%) ⬆️
...ed_collections/buffers/file_buffered_collection.py 99.17% <0.00%> (+1.65%) ⬆️
signac/core/utility.py 77.27% <0.00%> (+4.54%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update a9c75e0...360b898. Read the comment docs.

@bdice bdice marked this pull request as ready for review June 20, 2022 02:03
@bdice bdice requested review from a team as code owners June 20, 2022 02:03
@bdice bdice requested review from csadorf and jennyfothergill and removed request for a team June 20, 2022 02:03
@bdice bdice self-assigned this Jun 20, 2022
@bdice bdice added the enhancement New feature or request label Jun 20, 2022
@bdice bdice added this to the v1.8.0 milestone Jun 20, 2022
@bdice bdice requested review from cbkerr and mikemhenry June 20, 2022 02:04
@bdice
Copy link
Member Author

bdice commented Jun 20, 2022

Tagging @mikemhenry and @cbkerr for review since you've had some interest in CI in the past.


on:
# trigger on pull requests
pull_request:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want this to run on all PRs or ones that target a given branch?

Copy link
Member Author

@bdice bdice Jul 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All PRs? 🤷‍♂️

@joaander
Copy link
Member

  • Make an attempt at the "deploy to PyPI" logic that should release a source distribution (tarball) and a wheel tagged py3-none-any uploaded from one of those test configurations mentioned above. See https://github.com/pypa/gh-action-pypi-publish

@bdice Would highly recommend taking advantage of the idea that GHA supports many workflows and make this a separate workflow that is triggered either on a release and/or workflow_dispatch. c.f. pyhf's worfkflow for an example.

This is what gsd does: https://github.com/glotzerlab/gsd/blob/ca4f7c133594dd88f46d33b6e99c34a31b5706e8/.github/workflows/build_wheels.yml#L65-L96

uses: actions/setup-python@v3
with:
python-version: ${{ matrix.config.python }}
- name: Install newest dependencies
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use actions/cache to cache the files pip downloads and reduce the CI run time slightly: https://github.com/actions/cache

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a good idea but I'm going to leave it out-of-scope for this PR. Looks like this explains how to set it up for pip caching: https://github.com/actions/cache/blob/main/examples.md#simple-example

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caching works fine on multi-platform CI. You include the platform and any other relevant system specific quantities (like python version) in the cache key.

Your "install newest" dependencies step takes ~3 m 18 s (out of 10m 56 s total test time). Caching would remove the download times from that 3m 18s, but not the install times.

Copy link
Collaborator

@mikemhenry mikemhenry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a few notes!

Copy link
Member

@cbkerr cbkerr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only had time for a quick look, but I didn't see any obvious problems.
Thanks!

bdice and others added 3 commits July 4, 2022 20:41
@bdice bdice merged commit 3d546da into master Jul 5, 2022
@bdice bdice deleted the github-actions branch July 5, 2022 02:16
@bdice bdice mentioned this pull request Jul 5, 2022
6 tasks
@vyasr vyasr mentioned this pull request Nov 3, 2022
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants