-
Notifications
You must be signed in to change notification settings - Fork 115
ci: Reorganize CI #362
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
Merged
Merged
ci: Reorganize CI #362
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
bf6b529
Separate pre-commit step
LecrisUT dd6fb21
fix concurrency references
LecrisUT a2927c3
Simplify CI names
LecrisUT 3f88252
Separate coverage step
LecrisUT 7e8f5d2
Mask experimental runs
LecrisUT 90196bb
Badges!
LecrisUT aa56b28
Change step_test matrix
LecrisUT 045c479
Disable `windows-2019` and python --pre to be investigated later
LecrisUT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: 👀 coverage | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
ctest: | ||
name: ${{ matrix.coverage }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
coverage: [ unit_tests, c_api, fortran_api ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: lukka/get-cmake@latest | ||
- name: Get test coverage for ${{ matrix.coverage }} | ||
uses: lukka/run-cmake@v10.3 | ||
with: | ||
workflowPreset: "ci-coverage-${{ matrix.coverage }}" | ||
- name: Get lcov data | ||
uses: danielealbano/lcov-action@v3 | ||
with: | ||
# Note lcov-action prepends and appends wild-cards *. Account for those | ||
# https://github.com/danielealbano/lcov-action/issues/11 | ||
remove_patterns: /test/,/cmake-build*/ | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
name: ${{ matrix.coverage }} coverage | ||
files: coverage.info | ||
flags: ${{ matrix.coverage }} | ||
verbose: true | ||
|
||
pytest: | ||
name: python_api | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- name: Setup spglib | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[test-cov] \ | ||
--config-settings=cmake.define.CMAKE_C_COMPILER=gcc \ | ||
--config-settings=cmake.define.SPGLIB_TEST_COVERAGE=ON \ | ||
--config-settings=build-dir=build | ||
- name: Test pytest with coverage | ||
run: pytest --cov=spglib | ||
- name: Get lcov data | ||
uses: danielealbano/lcov-action@v3 | ||
with: | ||
# Note lcov-action prepends and appends wild-cards *. Account for those | ||
# https://github.com/danielealbano/lcov-action/issues/11 | ||
remove_patterns: /test/,/cmake-build*/,/tmp/ | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
name: python_api coverage | ||
files: coverage.info,.coverage | ||
flags: python_api | ||
verbose: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: pre-commit | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pre-commit: | ||
name: Check pre-commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- uses: pre-commit/action@v3.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: test-docs | ||
run-name: Run documentation tests | ||
name: 📘 test-docs | ||
|
||
on: | ||
workflow_call: | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Note: "3.x" specifies the latest stable version.
https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#using-the-python-version-input