-
Notifications
You must be signed in to change notification settings - Fork 37
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
Conversation
… of numpy. Instead, this is covered by the system-independent `longdouble` where supported.
@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 |
… of numpy. Instead, this is covered by the system-independent `longdouble` where supported.
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
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 Report
@@ 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
Continue to review full report at Codecov.
|
Tagging @mikemhenry and @cbkerr for review since you've had some interest in CI in the past. |
|
||
on: | ||
# trigger on pull requests | ||
pull_request: |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All PRs? 🤷♂️
This is what |
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.config.python }} | ||
- name: Install newest dependencies |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
There was a problem hiding this 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!
There was a problem hiding this 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!
Co-authored-by: Mike Henry <11765982+mikemhenry@users.noreply.github.com>
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:
asv
instead.py3-none-any
uploaded from one of those test configurations mentioned above. See https://github.com/pypa/gh-action-pypi-publishcheck-metadata
job and thedeploy.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: