config.yml.in 6.4 KB
Newer Older
1
2
3
4
version: 2.1

# How to test the Linux jobs:
#   - Install CircleCI local CLI: https://circleci.com/docs/2.0/local-cli/
Edward Z. Yang's avatar
Edward Z. Yang committed
5
6
7
#   - circleci config process .circleci/config.yml > gen.yml && circleci local execute -c gen.yml --job binary_linux_wheel_py3.7
#     - Replace binary_linux_wheel_py3.7 with the name of the job you want to test.
#       Job names are 'name:' key.
8
9
10

binary_common: &binary_common
  parameters:
Edward Z. Yang's avatar
Edward Z. Yang committed
11
    # Edit these defaults to do a release
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
    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
    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 >>
Edward Z. Yang's avatar
Edward Z. Yang committed
33
    CU_VERSION: cpu
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

jobs:
  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:
50
      - image: "pytorch/manylinux-cuda100"
51
52
53
54
55
56
    resource_class: 2xlarge+
    steps:
      - checkout
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
57
58
59
60
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
61
62
63
64

  binary_linux_conda:
    <<: *binary_common
    docker:
65
      - image: "pytorch/conda-cuda"
66
67
68
69
70
71
    resource_class: 2xlarge+
    steps:
      - checkout
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
72
73
74
75
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93

  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
Edward Z. Yang's avatar
Edward Z. Yang committed
94
95
96
97
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113

  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
Edward Z. Yang's avatar
Edward Z. Yang committed
114
115
116
117
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
118

Edward Z. Yang's avatar
Edward Z. Yang committed
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
  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set +x
            anaconda login \
                --username "$PYTORCH_BINARY_PJH5_CONDA_USERNAME" \
                --password "$PYTORCH_BINARY_PJH5_CONDA_PASSWORD"
            set -x
            anaconda upload ~/workspace/*.tar.bz2 -u pytorch-nightly --label main --no-progress --force

  # Requires org-member context
  binary_wheel_upload:
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
      - checkout
      - run:
          command: |
            pip install --user awscli
            export PATH="$HOME/.local/bin:$PATH"
            # Prevent credential from leaking
            set +x
            export AWS_ACCESS_KEY_ID="${PYTORCH_BINARY_AWS_ACCESS_KEY_ID}"
            export AWS_SECRET_ACCESS_KEY="${PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY}"
            set -x
            for pkg in ~/workspace/*.whl; do
              aws s3 cp "$pkg" "s3://pytorch/whl/nightly/" --acl public-read
            done


Edward Z. Yang's avatar
Edward Z. Yang committed
159
{%- macro workflow(btype, os, python_version, unicode, prefix='', filter_branch=None, upload=False) %}
160
      - binary_{{os}}_{{btype}}:
Edward Z. Yang's avatar
Edward Z. Yang committed
161
          name: {{prefix}}binary_{{os}}_{{btype}}_py{{python_version}}{{ "_unicode" if unicode }}
162
          python_version: "{{python_version}}"
Edward Z. Yang's avatar
Edward Z. Yang committed
163
{%-   if unicode %}
164
          unicode_abi: "1"
Edward Z. Yang's avatar
Edward Z. Yang committed
165
{%-   endif %}
Edward Z. Yang's avatar
Edward Z. Yang committed
166
167
168
169
170
{%-   if filter_branch %}
          filters:
            branches:
              only: {{filter_branch}}
{%-   endif %}
Edward Z. Yang's avatar
Edward Z. Yang committed
171
172
173
174
175
176
177

{%-   if upload %}
      - binary_{{btype}}_upload:
          name: {{prefix}}binary_{{os}}_{{btype}}_py{{python_version}}{{ "_unicode" if unicode }}_upload
          context: org-member
          requires:
            - {{prefix}}binary_{{os}}_{{btype}}_py{{python_version}}{{ "_unicode" if unicode }}
Edward Z. Yang's avatar
Edward Z. Yang committed
178
179
180
181
182
{%-   if filter_branch %}
          filters:
            branches:
              only: {{filter_branch}}
{%-   endif %}
Edward Z. Yang's avatar
Edward Z. Yang committed
183
184
185
{%-   endif %}
{%- endmacro %}

Edward Z. Yang's avatar
Edward Z. Yang committed
186
{%- macro workflows(prefix='', filter_branch=None, upload=False) %}
Edward Z. Yang's avatar
Edward Z. Yang committed
187
188
{%- for btype in ["wheel", "conda"] -%}
{%-   for os in ["linux", "macos"] -%}
189
{%-     for python_version in ["2.7", "3.5", "3.6", "3.7"] -%}
Edward Z. Yang's avatar
Edward Z. Yang committed
190
{%-       for unicode in ([False, True] if btype == "wheel" and python_version == "2.7" else [False]) -%}
Edward Z. Yang's avatar
Edward Z. Yang committed
191
          {{ workflow(btype, os, python_version, unicode, prefix=prefix, filter_branch=filter_branch, upload=upload) }}
Edward Z. Yang's avatar
Edward Z. Yang committed
192
{%-       endfor -%}
193
194
{%-     endfor -%}
{%-   endfor -%}
Edward Z. Yang's avatar
Edward Z. Yang committed
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{%- endfor %}
{%- endmacro %}

workflows:
  build:
{%- if True %}
    jobs:
      - circleci_consistency
      {{ workflows() }}

  nightly:
{%- endif %}
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
209
      {{ workflows(prefix="nightly_", filter_branch="nightly", upload=True) }}