Skip to content

Commit 7ed4417

Browse files
committed
cirrus: TEMP target just the test i care about
1 parent 3268fde commit 7ed4417

File tree

1 file changed

+62
-62
lines changed

1 file changed

+62
-62
lines changed

.cirrus.yml

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -5,45 +5,45 @@ run_tests: &RUN_TESTS
55
- python -m pip install dependency-groups
66
- python -m dependency_groups test | xargs python -m pip install -e.
77
run_cibuildwheel_tests_script:
8-
- python ./bin/run_tests.py
8+
- pytest test -k test_abi3
99

10-
linux_x86_task:
11-
timeout_in: 120m
12-
compute_engine_instance:
13-
image_project: cirrus-images
14-
image: family/docker-builder
15-
platform: linux
16-
cpu: 8
17-
memory: 8G
18-
env:
19-
VENV_ROOT: ${HOME}/venv-cibuildwheel
20-
PATH: ${VENV_ROOT}/bin:${PATH}
21-
install_pre_requirements_script:
22-
- docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
23-
- add-apt-repository -y ppa:deadsnakes/ppa
24-
- apt-get update
25-
- apt-get install -y python3.12-venv
26-
- python3.12 -m venv ${VENV_ROOT}
27-
<<: *RUN_TESTS
10+
# linux_x86_task:
11+
# timeout_in: 120m
12+
# compute_engine_instance:
13+
# image_project: cirrus-images
14+
# image: family/docker-builder
15+
# platform: linux
16+
# cpu: 8
17+
# memory: 8G
18+
# env:
19+
# VENV_ROOT: ${HOME}/venv-cibuildwheel
20+
# PATH: ${VENV_ROOT}/bin:${PATH}
21+
# install_pre_requirements_script:
22+
# - docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
23+
# - add-apt-repository -y ppa:deadsnakes/ppa
24+
# - apt-get update
25+
# - apt-get install -y python3.12-venv
26+
# - python3.12 -m venv ${VENV_ROOT}
27+
# <<: *RUN_TESTS
2828

29-
linux_aarch64_task:
30-
compute_engine_instance:
31-
image_project: cirrus-images
32-
image: family/docker-builder-arm64
33-
architecture: arm64
34-
platform: linux
35-
cpu: 4
36-
memory: 4G
37-
env:
38-
VENV_ROOT: ${HOME}/venv-cibuildwheel
39-
PATH: ${VENV_ROOT}/bin:${PATH}
40-
install_pre_requirements_script:
41-
- docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
42-
- add-apt-repository -y ppa:deadsnakes/ppa
43-
- apt-get update
44-
- apt-get install -y python3.12-venv
45-
- python3.12 -m venv ${VENV_ROOT}
46-
<<: *RUN_TESTS
29+
# linux_aarch64_task:
30+
# compute_engine_instance:
31+
# image_project: cirrus-images
32+
# image: family/docker-builder-arm64
33+
# architecture: arm64
34+
# platform: linux
35+
# cpu: 4
36+
# memory: 4G
37+
# env:
38+
# VENV_ROOT: ${HOME}/venv-cibuildwheel
39+
# PATH: ${VENV_ROOT}/bin:${PATH}
40+
# install_pre_requirements_script:
41+
# - docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
42+
# - add-apt-repository -y ppa:deadsnakes/ppa
43+
# - apt-get update
44+
# - apt-get install -y python3.12-venv
45+
# - python3.12 -m venv ${VENV_ROOT}
46+
# <<: *RUN_TESTS
4747

4848
windows_x86_task:
4949
# The task takes ~55 minutes while the timeout happens
@@ -60,29 +60,29 @@ windows_x86_task:
6060
- echo PATH=%PATH% >> "%CIRRUS_ENV%"
6161
<<: *RUN_TESTS
6262

63-
macos_arm64_task:
64-
macos_instance:
65-
image: ghcr.io/cirruslabs/macos-runner:sequoia
66-
env:
67-
VENV_ROOT: ${HOME}/venv-cibuildwheel
68-
PATH: ${VENV_ROOT}/bin:${PATH}
69-
install_pre_requirements_script:
70-
- brew install [email protected]
71-
- python3.12 -m venv ${VENV_ROOT}
72-
<<: *RUN_TESTS
63+
# macos_arm64_task:
64+
# macos_instance:
65+
# image: ghcr.io/cirruslabs/macos-runner:sequoia
66+
# env:
67+
# VENV_ROOT: ${HOME}/venv-cibuildwheel
68+
# PATH: ${VENV_ROOT}/bin:${PATH}
69+
# install_pre_requirements_script:
70+
# - brew install [email protected]
71+
# - python3.12 -m venv ${VENV_ROOT}
72+
# <<: *RUN_TESTS
7373

74-
macos_arm64_cp38_task:
75-
macos_instance:
76-
image: ghcr.io/cirruslabs/macos-runner:sequoia
77-
env:
78-
VENV_ROOT: ${HOME}/venv-cibuildwheel
79-
PATH: ${VENV_ROOT}/bin:${PATH}
80-
PYTEST_ADDOPTS: --run-cp38-universal2 -k 'test_cp38_arm64_testing_universal2_installer or test_arch_auto or test_dummy_serial'
81-
install_pre_requirements_script:
82-
- brew install [email protected]
83-
- python3.12 -m venv ${VENV_ROOT}
84-
- curl -fsSLO https://www.python.org/ftp/python/3.8.10/python-3.8.10-macos11.pkg
85-
- sudo installer -pkg python-3.8.10-macos11.pkg -target /
86-
- rm python-3.8.10-macos11.pkg
87-
- sh "/Applications/Python 3.8/Install Certificates.command"
88-
<<: *RUN_TESTS
74+
# macos_arm64_cp38_task:
75+
# macos_instance:
76+
# image: ghcr.io/cirruslabs/macos-runner:sequoia
77+
# env:
78+
# VENV_ROOT: ${HOME}/venv-cibuildwheel
79+
# PATH: ${VENV_ROOT}/bin:${PATH}
80+
# PYTEST_ADDOPTS: --run-cp38-universal2 -k 'test_cp38_arm64_testing_universal2_installer or test_arch_auto or test_dummy_serial'
81+
# install_pre_requirements_script:
82+
# - brew install [email protected]
83+
# - python3.12 -m venv ${VENV_ROOT}
84+
# - curl -fsSLO https://www.python.org/ftp/python/3.8.10/python-3.8.10-macos11.pkg
85+
# - sudo installer -pkg python-3.8.10-macos11.pkg -target /
86+
# - rm python-3.8.10-macos11.pkg
87+
# - sh "/Applications/Python 3.8/Install Certificates.command"
88+
# <<: *RUN_TESTS

0 commit comments

Comments
 (0)