config.yml 9.35 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 2.1

# How to test the Linux jobs:
#   - Install CircleCI local CLI: https://circleci.com/docs/2.0/local-cli/
#   - circleci config process .circleci/config.yml > gen.yml && circleci local execute -c gen.yml --job binary_linux_wheel
#     - Replace binary_linux_wheel with the name of the job you want to test

binary_common: &binary_common
  parameters:
    # Edit these defaults to do a release`
    build_version:
      description: "version number of release binary; by default, build a nightly"
      type: string
      default: ""
    pytorch_version:
      description: "PyTorch version to build against; by default, use a nightly"
      type: string
      default: ""
    # Don't edit these
    python_version:
      description: "Python version to build against (e.g., 3.7)"
      type: string
    cuda_version:
      description: "CUDA version to build against (e.g., cpu or 10.0)"
      type: string
    unicode_abi:
      description: "Python 2.7 wheel only: whether or not we are cp27mu (default: no)"
      type: string
      default: ""
  environment:
    PYTHON_VERSION: << parameters.python_version >>
    BUILD_VERSION: << parameters.build_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    UNICODE_ABI: << parameters.unicode_abi >>
    CUDA_VERSION: << parameters.cuda_version >>

37
jobs:
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off jinja2
            python .circleci/regenerate.py
            git diff --exit-code || (echo ".circleci/config.yml not in sync with config.yml.in! Run .circleci/regenerate.py to update config"; exit 1)

  binary_linux_wheel:
    <<: *binary_common
    docker:
      - image: "soumith/manylinux-cuda100"
    resource_class: 2xlarge+
    steps:
      - checkout
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist

  binary_linux_conda:
    <<: *binary_common
    docker:
      - image: "soumith/conda-cuda"
    resource_class: 2xlarge+
65
66
    steps:
      - checkout
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64

  binary_macos_wheel:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
      - checkout
      - run:
          # Cannot easily deduplicate this as source'ing activate
          # will set environment variables which we need to propagate
          # to build_wheel.sh
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            packaging/build_wheel.sh
      - store_artifacts:
          path: dist

  binary_macos_conda:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
      - checkout
      - run:
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            conda install -yq conda-build
            packaging/build_conda.sh
      - store_artifacts:
          path: /Users/distiller/miniconda3/conda-bld/osx-64

workflows:
  build:
    jobs:
      - circleci_consistency
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py2.7_cudacpu
          python_version: "2.7"
          cuda_version: "cpu"
      - binary_linux_wheel:
          name: binary_linux_wheel_py2.7_cudacpu_unicode
          python_version: "2.7"
          cuda_version: "cpu"
          unicode_abi: "1"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py2.7_cuda10.0
          python_version: "2.7"
          cuda_version: "10.0"
      - binary_linux_wheel:
          name: binary_linux_wheel_py2.7_cuda10.0_unicode
          python_version: "2.7"
          cuda_version: "10.0"
          unicode_abi: "1"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py2.7_cuda9.2
          python_version: "2.7"
          cuda_version: "9.2"
      - binary_linux_wheel:
          name: binary_linux_wheel_py2.7_cuda9.2_unicode
          python_version: "2.7"
          cuda_version: "9.2"
          unicode_abi: "1"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.5_cudacpu
          python_version: "3.5"
          cuda_version: "cpu"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.5_cuda10.0
          python_version: "3.5"
          cuda_version: "10.0"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.5_cuda9.2
          python_version: "3.5"
          cuda_version: "9.2"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.6_cudacpu
          python_version: "3.6"
          cuda_version: "cpu"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.6_cuda10.0
          python_version: "3.6"
          cuda_version: "10.0"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.6_cuda9.2
          python_version: "3.6"
          cuda_version: "9.2"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.7_cudacpu
          python_version: "3.7"
          cuda_version: "cpu"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.7_cuda10.0
          python_version: "3.7"
          cuda_version: "10.0"
      - binary_linux_wheel:
          # TODO: cudacpu is ugly
          name: binary_linux_wheel_py3.7_cuda9.2
          python_version: "3.7"
          cuda_version: "9.2"
      - binary_macos_wheel:
          # TODO: cudacpu is ugly
          name: binary_macos_wheel_py2.7_cudacpu
          python_version: "2.7"
          cuda_version: "cpu"
      - binary_macos_wheel:
          name: binary_macos_wheel_py2.7_cudacpu_unicode
          python_version: "2.7"
          cuda_version: "cpu"
          unicode_abi: "1"
      - binary_macos_wheel:
          # TODO: cudacpu is ugly
          name: binary_macos_wheel_py3.5_cudacpu
          python_version: "3.5"
          cuda_version: "cpu"
      - binary_macos_wheel:
          # TODO: cudacpu is ugly
          name: binary_macos_wheel_py3.6_cudacpu
          python_version: "3.6"
          cuda_version: "cpu"
      - binary_macos_wheel:
          # TODO: cudacpu is ugly
          name: binary_macos_wheel_py3.7_cudacpu
          python_version: "3.7"
          cuda_version: "cpu"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py2.7_cudacpu
          python_version: "2.7"
          cuda_version: "cpu"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py2.7_cuda10.0
          python_version: "2.7"
          cuda_version: "10.0"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py2.7_cuda9.2
          python_version: "2.7"
          cuda_version: "9.2"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.5_cudacpu
          python_version: "3.5"
          cuda_version: "cpu"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.5_cuda10.0
          python_version: "3.5"
          cuda_version: "10.0"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.5_cuda9.2
          python_version: "3.5"
          cuda_version: "9.2"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.6_cudacpu
          python_version: "3.6"
          cuda_version: "cpu"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.6_cuda10.0
          python_version: "3.6"
          cuda_version: "10.0"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.6_cuda9.2
          python_version: "3.6"
          cuda_version: "9.2"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.7_cudacpu
          python_version: "3.7"
          cuda_version: "cpu"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.7_cuda10.0
          python_version: "3.7"
          cuda_version: "10.0"
      - binary_linux_conda:
          # TODO: cudacpu is ugly
          name: binary_linux_conda_py3.7_cuda9.2
          python_version: "3.7"
          cuda_version: "9.2"
      - binary_macos_conda:
          # TODO: cudacpu is ugly
          name: binary_macos_conda_py2.7_cudacpu
          python_version: "2.7"
          cuda_version: "cpu"
      - binary_macos_conda:
          # TODO: cudacpu is ugly
          name: binary_macos_conda_py3.5_cudacpu
          python_version: "3.5"
          cuda_version: "cpu"
      - binary_macos_conda:
          # TODO: cudacpu is ugly
          name: binary_macos_conda_py3.6_cudacpu
          python_version: "3.6"
          cuda_version: "cpu"
      - binary_macos_conda:
          # TODO: cudacpu is ugly
          name: binary_macos_conda_py3.7_cudacpu
          python_version: "3.7"
          cuda_version: "cpu"