Skip to content

Commit

Permalink
[backport 2.3.x] CI: Remove CircleCI in favor of GHA ARM builds (#60761
Browse files Browse the repository at this point in the history
…) (#60790)

CI: Remove CircleCI in favor of GHA ARM builds (#60761)

(cherry picked from commit f3045db)

Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
  • Loading branch information
jorisvandenbossche and mroeschke authored Jan 26, 2025
1 parent 6bb498b commit 6451f79
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 210 deletions.
143 changes: 0 additions & 143 deletions .circleci/config.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ pandas/_version.py export-subst
*.pxi export-ignore

# Ignoring stuff from the top level
.circleci export-ignore
.github export-ignore
asv_bench export-ignore
ci export-ignore
Expand Down
62 changes: 0 additions & 62 deletions ci/deps/circle-310-arm64.yaml

This file was deleted.

7 changes: 3 additions & 4 deletions pandas/tests/io/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,13 @@ def s3_base(worker_id, monkeypatch):
monkeypatch.setenv("AWS_SECRET_ACCESS_KEY", "foobar_secret")
if is_ci_environment():
if is_platform_arm() or is_platform_mac() or is_platform_windows():
# NOT RUN on Windows/macOS/ARM, only Ubuntu
# NOT RUN on Windows/macOS, only Ubuntu
# - subprocess in CI can cause timeouts
# - GitHub Actions do not support
# container services for the above OSs
# - CircleCI will probably hit the Docker rate pull limit
pytest.skip(
"S3 tests do not have a corresponding service in "
"Windows, macOS or ARM platforms"
"S3 tests do not have a corresponding service on "
"Windows or macOS platforms"
)
else:
# set in .github/workflows/unit-tests.yml
Expand Down

0 comments on commit 6451f79

Please sign in to comment.