From bd512e9065f209d70d3c3ab2d6189f564504925e Mon Sep 17 00:00:00 2001 From: Jakub Kuczys <6032823+jack1142@users.noreply.github.com> Date: Wed, 17 Aug 2022 15:46:00 +0200 Subject: [PATCH] Remove Linux arm64 build --- .cirrus.yml | 23 ----------------------- cibuildwheel/linux.py | 3 +-- examples/cirrus-ci-minimal.yml | 24 ------------------------ 3 files changed, 1 insertion(+), 49 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index bc1054df..69d45431 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -17,29 +17,6 @@ linux_x86_task: - apt install -y python3-venv python-is-python3 <<: *RUN_TESTS -linux_arm64_task: - arm_container: - image: python:3.10 - cpu: 1 - memory: 1G - additional_containers: - - name: dockerdaemon - privileged: true - cpu: 3 - memory: 3G - image: docker:dind - command: dockerd - port: 2375 - env: - DOCKER_DRIVER: overlay2 - DOCKER_TLS_CERTDIR: "" - env: - DOCKER_HOST: tcp://localhost:2375 - - install_pre_requirements_script: - - curl -sSL https://get.docker.com/ | sh - <<: *RUN_TESTS - windows_x86_task: # The task takes ~55 minutes while the timeout happens # after 60 minutes by default, let's allow some wiggle room. diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index d213ce94..d04ebf58 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -349,8 +349,7 @@ def build(options: Options, tmp_path: Path) -> None: # pylint: disable=unused-a If you're building on Travis CI, add `services: [docker]` to your .travis.yml. If you're building on Circle CI in Linux, add a `setup_remote_docker` step to your .circleci/config.yml. - If you're building on Cirrus CI, use `docker_builder` task on x86 - or run `docker:dind` image in an additional container on ARM. + If you're building on Cirrus CI, use `docker_builder` task. """ ), file=sys.stderr, diff --git a/examples/cirrus-ci-minimal.yml b/examples/cirrus-ci-minimal.yml index 777da56d..bd27d23f 100644 --- a/examples/cirrus-ci-minimal.yml +++ b/examples/cirrus-ci-minimal.yml @@ -20,30 +20,6 @@ linux_x86_task: - apt install -y python3-venv python-is-python3 <<: *BUILD_AND_STORE_WHEELS -linux_arm64_task: - name: Build Linux arm64 wheels. - arm_container: - image: python:3.10 - cpu: 1 - memory: 1G - additional_containers: - - name: dockerdaemon - privileged: true - cpu: 3 - memory: 3G - image: docker:dind - command: dockerd - port: 2375 - env: - DOCKER_DRIVER: overlay2 - DOCKER_TLS_CERTDIR: "" - env: - DOCKER_HOST: tcp://localhost:2375 - - install_pre_requirements_script: - - curl -sSL https://get.docker.com/ | sh - <<: *BUILD_AND_STORE_WHEELS - windows_x86_task: name: Build Windows x86 wheels. windows_container: