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

[python] Add GHA workflow for minimal CI jobs #750

Merged
merged 43 commits into from
Jan 19, 2023
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7fd4646
add GHA workflow for minimal CI jobs
atolopko-czi Jan 19, 2023
4058755
run "full" ci workflow only on main merges and releases
atolopko-czi Jan 19, 2023
65c6a5e
fix
atolopko-czi Jan 19, 2023
33065c3
temporarily disable r ci GHA workflow
atolopko-czi Jan 19, 2023
1668f79
add "full" to workflow name
atolopko-czi Jan 19, 2023
d330b5e
trigger python minimal ci workflow on python changes only
atolopko-czi Jan 19, 2023
07d82a5
tmp file to trigger GHA Python CI minimal workflow for testing
atolopko-czi Jan 19, 2023
84f9692
fix/testing
atolopko-czi Jan 19, 2023
ee3a2bd
fix/testing
atolopko-czi Jan 19, 2023
8d42d86
fix/testing
atolopko-czi Jan 19, 2023
c6dfb58
fix/testing
atolopko-czi Jan 19, 2023
8163d59
fix/testing
atolopko-czi Jan 19, 2023
cbb06e6
fix/testing
atolopko-czi Jan 19, 2023
122cad0
fix/testing
atolopko-czi Jan 19, 2023
6dbbf69
cleanup
atolopko-czi Jan 19, 2023
ee50906
test python ci full workflow
atolopko-czi Jan 19, 2023
e8146dc
test python ci full workflow
atolopko-czi Jan 19, 2023
face8d5
use reusable workflow for python-ci-{full,minimal}
atolopko-czi Jan 19, 2023
bdd6587
fix/testing
atolopko-czi Jan 19, 2023
5de96e7
fix/testing
atolopko-czi Jan 19, 2023
518c343
trigger
atolopko-czi Jan 19, 2023
c5fdc55
workflow name
atolopko-czi Jan 19, 2023
690a1a3
cleanup
atolopko-czi Jan 19, 2023
59ced62
test python ci full
atolopko-czi Jan 19, 2023
2406ef9
fix
atolopko-czi Jan 19, 2023
1f14178
cleanup, docs
atolopko-czi Jan 19, 2023
b5280bd
Merge branch 'main' into atol/693-ci-optimize-resource-usage
atolopko-czi Jan 19, 2023
b7357ff
always call reusable workflow from same branch
atolopko-czi Jan 19, 2023
c8b01b6
revert debug code
atolopko-czi Jan 19, 2023
0315f99
revert to original python GHA job triggers
atolopko-czi Jan 19, 2023
fa485c5
Merge branch 'main' into atol/693-ci-optimize-resource-usage
atolopko-czi Jan 19, 2023
3063097
rm redundant mypy check
atolopko-czi Jan 19, 2023
307a254
rm todo
atolopko-czi Jan 19, 2023
cc8ac5a
test pull_request trigger again
atolopko-czi Jan 19, 2023
4156a4b
test pull_request trigger again
atolopko-czi Jan 19, 2023
616b6a3
give up on pull_request trigger for now; use push
atolopko-czi Jan 19, 2023
20b4648
Merge branch 'main' into atol/693-ci-optimize-resource-usage
atolopko-czi Jan 19, 2023
94a4369
caching fix attempt
atolopko-czi Jan 19, 2023
bbadfcd
caching fix attempt
atolopko-czi Jan 19, 2023
34d41c9
trigger
atolopko-czi Jan 19, 2023
91e7023
caching fix attempt
atolopko-czi Jan 19, 2023
1b4286e
caching fix attempt
atolopko-czi Jan 19, 2023
5e2689d
rm testing file
atolopko-czi Jan 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/python-ci-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name: TileDB-SOMA Python CI (Minimal)
on:
# TODO: 'pull_request' not triggering on subsequent pushes; is 'push' acceptable?
johnkerl marked this conversation as resolved.
Show resolved Hide resolved
push:
Copy link
Member Author

Choose a reason for hiding this comment

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

This now differs from r-ci.yml, which is not ideal. And the GHA console shows push- and pull_request-triggered workflow runs somewhat differently. I'm going to test once more with pull_request...

paths:
- 'apis/python/**'
- '!apis/r/**'
paths-ignore:
- 'apis/r/**'
branches-ignore:
- main

Expand Down