Skip to content

CI: Don't split slow vs non slow jobs for GHA posix #45437

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 15 commits into from
Jan 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
7 changes: 2 additions & 5 deletions .github/workflows/datamanger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@ jobs:
AWS_SECRET_ACCESS_KEY: foobar_secret
ports:
- 5000:5000
strategy:
matrix:
pattern: ["not slow and not network and not clipboard", "slow"]
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager-${{ matrix.pattern }}
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager
cancel-in-progress: true

steps:
Expand All @@ -48,7 +45,7 @@ jobs:
- name: Run tests
env:
PANDAS_DATA_MANAGER: array
PATTERN: ${{ matrix.pattern }}
PATTERN: "not network and not clipboard"
PYTEST_WORKERS: "auto"
PYTEST_TARGET: pandas
run: |
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@ jobs:
matrix:
settings: [
[actions-38-downstream_compat.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
[actions-38-minimum_versions.yaml, "slow", "", "", "", "", ""],
[actions-38-minimum_versions.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
[actions-38-minimum_versions.yaml, "not clipboard", "", "", "", "", ""],
[actions-38.yaml, "not slow and not network", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
[actions-38.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
[actions-38.yaml, "not slow and not clipboard", "", "", "", "", ""],
[actions-38.yaml, "slow", "", "", "", "", ""],
[actions-38.yaml, "not clipboard", "", "", "", "", ""],
[actions-pypy-38.yaml, "not slow and not clipboard", "", "", "", "", "--max-worker-restart 0"],
[actions-39.yaml, "slow", "", "", "", "", ""],
[actions-39.yaml, "not slow and not clipboard", "", "", "", "", ""],
[actions-39.yaml, "not clipboard", "", "", "", "", ""],
[actions-310-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
[actions-310.yaml, "not slow and not clipboard", "", "", "", "", ""],
[actions-310.yaml, "slow", "", "", "", "", ""],
[actions-310.yaml, "not clipboard", "", "", "", "", ""],
]
fail-fast: false
env:
Expand Down