Skip to content

Commit 257f152

Browse files
authored
[Nova] Remove CircleCI Wheels Builds (#1121)
1 parent 5a01be1 commit 257f152

File tree

1 file changed

+0
-183
lines changed

1 file changed

+0
-183
lines changed

.circleci/config.yml

Lines changed: 0 additions & 183 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ binary_common: &binary_common
107107
description: "Python 2.7 wheel only: whether or not we are cp27mu (default: no)"
108108
type: string
109109
default: ""
110-
wheel_docker_image:
111-
description: "Wheel only: what docker image to use"
112-
type: string
113-
default: "pytorch/manylinux-cuda116"
114110
conda_docker_image:
115111
description: "Conda only: what docker image to use"
116112
type: string
@@ -198,66 +194,6 @@ jobs:
198194
name: Check Python types statically
199195
command: mypy --install-types --non-interactive --config-file mypy.ini
200196

201-
binary_linux_wheel:
202-
<<: *binary_common
203-
docker:
204-
- image: << parameters.wheel_docker_image >>
205-
resource_class: 2xlarge+
206-
steps:
207-
- checkout_merge
208-
- designate_upload_channel
209-
- run: packaging/build_wheels.sh
210-
- store_artifacts:
211-
path: dist
212-
- persist_to_workspace:
213-
root: dist
214-
paths:
215-
- "*"
216-
217-
binary_macos_wheel:
218-
<<: *binary_common
219-
macos:
220-
xcode: "14.0"
221-
steps:
222-
- checkout_merge
223-
- designate_upload_channel
224-
- run:
225-
# Cannot easily deduplicate this as source'ing activate
226-
# will set environment variables which we need to propagate
227-
# to build_wheel.sh
228-
command: |
229-
curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
230-
sh conda.sh -b
231-
source $HOME/miniconda3/bin/activate
232-
packaging/build_wheels.sh
233-
- store_artifacts:
234-
path: dist
235-
- persist_to_workspace:
236-
root: dist
237-
paths:
238-
- "*"
239-
240-
binary_win_wheel:
241-
<<: *binary_common
242-
executor: windows-cpu
243-
steps:
244-
- checkout_merge
245-
- designate_upload_channel
246-
- run:
247-
name: Build wheel packages
248-
no_output_timeout: 30m
249-
command: |
250-
set -ex
251-
source packaging/windows/internal/vc_install_helper.sh
252-
packaging/windows/internal/cuda_install.bat
253-
packaging/build_wheels.sh
254-
- store_artifacts:
255-
path: dist
256-
- persist_to_workspace:
257-
root: dist
258-
paths:
259-
- "*"
260-
261197
unittest_linux_cpu:
262198
<<: *binary_common
263199

@@ -1196,125 +1132,6 @@ workflows:
11961132
- lint_python_and_config
11971133
- lint_c
11981134

1199-
build:
1200-
jobs:
1201-
- binary_linux_wheel:
1202-
conda_docker_image: pytorch/conda-builder:cpu
1203-
cu_version: cpu
1204-
name: binary_linux_wheel_py3.7_cpu
1205-
python_version: '3.7'
1206-
wheel_docker_image: pytorch/manylinux-cuda102
1207-
1208-
- binary_linux_wheel:
1209-
conda_docker_image: pytorch/conda-builder:cpu
1210-
cu_version: cpu
1211-
name: binary_linux_wheel_py3.8_cpu
1212-
python_version: '3.8'
1213-
wheel_docker_image: pytorch/manylinux-cuda102
1214-
1215-
- binary_linux_wheel:
1216-
conda_docker_image: pytorch/conda-builder:cpu
1217-
cu_version: cpu
1218-
name: binary_linux_wheel_py3.9_cpu
1219-
python_version: '3.9'
1220-
wheel_docker_image: pytorch/manylinux-cuda102
1221-
1222-
- binary_linux_wheel:
1223-
conda_docker_image: pytorch/conda-builder:cpu
1224-
cu_version: cpu
1225-
name: binary_linux_wheel_py3.10_cpu
1226-
python_version: '3.10'
1227-
wheel_docker_image: pytorch/manylinux-cuda102
1228-
1229-
- binary_macos_wheel:
1230-
conda_docker_image: pytorch/conda-builder:cpu
1231-
cu_version: cpu
1232-
name: binary_macos_wheel_py3.7_cpu
1233-
python_version: '3.7'
1234-
wheel_docker_image: pytorch/manylinux-cuda102
1235-
1236-
- binary_macos_wheel:
1237-
conda_docker_image: pytorch/conda-builder:cpu
1238-
cu_version: cpu
1239-
name: binary_macos_wheel_py3.8_cpu
1240-
python_version: '3.8'
1241-
wheel_docker_image: pytorch/manylinux-cuda102
1242-
1243-
- binary_macos_wheel:
1244-
conda_docker_image: pytorch/conda-builder:cpu
1245-
cu_version: cpu
1246-
name: binary_macos_wheel_py3.9_cpu
1247-
python_version: '3.9'
1248-
wheel_docker_image: pytorch/manylinux-cuda102
1249-
1250-
- binary_macos_wheel:
1251-
conda_docker_image: pytorch/conda-builder:cpu
1252-
cu_version: cpu
1253-
name: binary_macos_wheel_py3.10_cpu
1254-
python_version: '3.10'
1255-
wheel_docker_image: pytorch/manylinux-cuda102
1256-
1257-
- binary_win_wheel:
1258-
cu_version: cpu
1259-
name: binary_win_wheel_py3.7_cpu
1260-
python_version: '3.7'
1261-
1262-
- binary_win_wheel:
1263-
cu_version: cu116
1264-
name: binary_win_wheel_py3.7_cu116
1265-
python_version: '3.7'
1266-
1267-
- binary_win_wheel:
1268-
cu_version: cu117
1269-
name: binary_win_wheel_py3.7_cu117
1270-
python_version: '3.7'
1271-
1272-
- binary_win_wheel:
1273-
cu_version: cpu
1274-
name: binary_win_wheel_py3.8_cpu
1275-
python_version: '3.8'
1276-
1277-
- binary_win_wheel:
1278-
cu_version: cu116
1279-
name: binary_win_wheel_py3.8_cu116
1280-
python_version: '3.8'
1281-
1282-
- binary_win_wheel:
1283-
cu_version: cu117
1284-
name: binary_win_wheel_py3.8_cu117
1285-
python_version: '3.8'
1286-
1287-
- binary_win_wheel:
1288-
cu_version: cpu
1289-
name: binary_win_wheel_py3.9_cpu
1290-
python_version: '3.9'
1291-
1292-
- binary_win_wheel:
1293-
cu_version: cu116
1294-
name: binary_win_wheel_py3.9_cu116
1295-
python_version: '3.9'
1296-
1297-
- binary_win_wheel:
1298-
cu_version: cu117
1299-
name: binary_win_wheel_py3.9_cu117
1300-
python_version: '3.9'
1301-
1302-
- binary_win_wheel:
1303-
cu_version: cpu
1304-
name: binary_win_wheel_py3.10_cpu
1305-
python_version: '3.10'
1306-
1307-
- binary_win_wheel:
1308-
cu_version: cu116
1309-
name: binary_win_wheel_py3.10_cu116
1310-
python_version: '3.10'
1311-
1312-
- binary_win_wheel:
1313-
cu_version: cu117
1314-
name: binary_win_wheel_py3.10_cu117
1315-
python_version: '3.10'
1316-
1317-
13181135
unittest:
13191136
jobs:
13201137
- unittest_linux_sklearn_gpu:

0 commit comments

Comments
 (0)