• Home
  • Raw
  • Download

Lines Matching +full:repo +full:- +full:token

5 name: macos-arm64-binary-conda
12 - nightly
15 # Release candidate tags look like: v1.11.0-rc1
16 - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
17 - 'ciflow/binaries/*'
18 - 'ciflow/binaries_conda/*'
23 ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine"
25 AWS_DEFAULT_REGION: us-east-1
26 BUILD_ENVIRONMENT: macos-arm64-binary-conda
31 …group: macos-arm64-binary-conda-${{ github.event.pull_request.number || github.ref_name }}-${{ git…
32 cancel-in-progress: true
35 conda-py3_8-cpu-build:
37 runs-on: macos-14-xlarge
38 timeout-minutes: 240
49 # For sccache access (only on non-forked PRs)
56 - name: Populate binary env
65 - name: Install conda and dependencies
67 …# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later …
68 …curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/minicond…
70 /bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
72 if [ -d "/Applications/Xcode_14.3.1.app" ]; then
74 elif [ -d "/Applications/Xcode_13.3.1.app" ]; then
77 - name: Checkout PyTorch
78 uses: malfet/checkout@silent-checkout
82 quiet-checkout: true
83 - name: Clean PyTorch checkout
86 git clean -fxd
87 working-directory: pytorch
88 - name: Checkout pytorch/builder
89 uses: malfet/checkout@silent-checkout
95 quiet-checkout: true
96 - name: Clean pytorch/builder checkout
99 git clean -fxd
100 working-directory: builder
101 - name: Install sccache (only for non-forked PRs, and pushes to trunk)
102 uses: nick-fields/retry@v2.8.2
103 …if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.rep…
109 …sudo curl --retry 3 --retry-all-errors https://s3.amazonaws.com/ossci-macos/sccache_v2.15 --output…
111 echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}"
112 - name: Populate binary env
117 - name: Build PyTorch binary
122 - uses: actions/upload-artifact@v3
125 name: conda-py3_8-cpu
126 retention-days: 14
127 if-no-files-found: error
129 conda-py3_8-cpu-upload: # Uploading
132 id-token: write
134 needs: conda-py3_8-cpu-build
143 DOCKER_IMAGE: pytorch/conda-builder:cpu-2.4
145 build_name: conda-py3_8-cpu
148 github-token: ${{ secrets.GITHUB_TOKEN }}
149 conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}
150 conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }}
151 uses: ./.github/workflows/_binary-upload.yml
152 conda-py3_9-cpu-build:
154 runs-on: macos-14-xlarge
155 timeout-minutes: 240
166 # For sccache access (only on non-forked PRs)
173 - name: Populate binary env
182 - name: Install conda and dependencies
184 …# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later …
185 …curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/minicond…
187 /bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
189 if [ -d "/Applications/Xcode_14.3.1.app" ]; then
191 elif [ -d "/Applications/Xcode_13.3.1.app" ]; then
194 - name: Checkout PyTorch
195 uses: malfet/checkout@silent-checkout
199 quiet-checkout: true
200 - name: Clean PyTorch checkout
203 git clean -fxd
204 working-directory: pytorch
205 - name: Checkout pytorch/builder
206 uses: malfet/checkout@silent-checkout
212 quiet-checkout: true
213 - name: Clean pytorch/builder checkout
216 git clean -fxd
217 working-directory: builder
218 - name: Install sccache (only for non-forked PRs, and pushes to trunk)
219 uses: nick-fields/retry@v2.8.2
220 …if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.rep…
226 …sudo curl --retry 3 --retry-all-errors https://s3.amazonaws.com/ossci-macos/sccache_v2.15 --output…
228 echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}"
229 - name: Populate binary env
234 - name: Build PyTorch binary
239 - uses: actions/upload-artifact@v3
242 name: conda-py3_9-cpu
243 retention-days: 14
244 if-no-files-found: error
246 conda-py3_9-cpu-upload: # Uploading
249 id-token: write
251 needs: conda-py3_9-cpu-build
260 DOCKER_IMAGE: pytorch/conda-builder:cpu-2.4
262 build_name: conda-py3_9-cpu
265 github-token: ${{ secrets.GITHUB_TOKEN }}
266 conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}
267 conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }}
268 uses: ./.github/workflows/_binary-upload.yml
269 conda-py3_10-cpu-build:
271 runs-on: macos-14-xlarge
272 timeout-minutes: 240
283 # For sccache access (only on non-forked PRs)
290 - name: Populate binary env
299 - name: Install conda and dependencies
301 …# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later …
302 …curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/minicond…
304 /bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
306 if [ -d "/Applications/Xcode_14.3.1.app" ]; then
308 elif [ -d "/Applications/Xcode_13.3.1.app" ]; then
311 - name: Checkout PyTorch
312 uses: malfet/checkout@silent-checkout
316 quiet-checkout: true
317 - name: Clean PyTorch checkout
320 git clean -fxd
321 working-directory: pytorch
322 - name: Checkout pytorch/builder
323 uses: malfet/checkout@silent-checkout
329 quiet-checkout: true
330 - name: Clean pytorch/builder checkout
333 git clean -fxd
334 working-directory: builder
335 - name: Install sccache (only for non-forked PRs, and pushes to trunk)
336 uses: nick-fields/retry@v2.8.2
337 …if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.rep…
343 …sudo curl --retry 3 --retry-all-errors https://s3.amazonaws.com/ossci-macos/sccache_v2.15 --output…
345 echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}"
346 - name: Populate binary env
351 - name: Build PyTorch binary
356 - uses: actions/upload-artifact@v3
359 name: conda-py3_10-cpu
360 retention-days: 14
361 if-no-files-found: error
363 conda-py3_10-cpu-upload: # Uploading
366 id-token: write
368 needs: conda-py3_10-cpu-build
377 DOCKER_IMAGE: pytorch/conda-builder:cpu-2.4
379 build_name: conda-py3_10-cpu
382 github-token: ${{ secrets.GITHUB_TOKEN }}
383 conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}
384 conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }}
385 uses: ./.github/workflows/_binary-upload.yml
386 conda-py3_11-cpu-build:
388 runs-on: macos-14-xlarge
389 timeout-minutes: 240
400 # For sccache access (only on non-forked PRs)
407 - name: Populate binary env
416 - name: Install conda and dependencies
418 …# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later …
419 …curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/minicond…
421 /bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
423 if [ -d "/Applications/Xcode_14.3.1.app" ]; then
425 elif [ -d "/Applications/Xcode_13.3.1.app" ]; then
428 - name: Checkout PyTorch
429 uses: malfet/checkout@silent-checkout
433 quiet-checkout: true
434 - name: Clean PyTorch checkout
437 git clean -fxd
438 working-directory: pytorch
439 - name: Checkout pytorch/builder
440 uses: malfet/checkout@silent-checkout
446 quiet-checkout: true
447 - name: Clean pytorch/builder checkout
450 git clean -fxd
451 working-directory: builder
452 - name: Install sccache (only for non-forked PRs, and pushes to trunk)
453 uses: nick-fields/retry@v2.8.2
454 …if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.rep…
460 …sudo curl --retry 3 --retry-all-errors https://s3.amazonaws.com/ossci-macos/sccache_v2.15 --output…
462 echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}"
463 - name: Populate binary env
468 - name: Build PyTorch binary
473 - uses: actions/upload-artifact@v3
476 name: conda-py3_11-cpu
477 retention-days: 14
478 if-no-files-found: error
480 conda-py3_11-cpu-upload: # Uploading
483 id-token: write
485 needs: conda-py3_11-cpu-build
494 DOCKER_IMAGE: pytorch/conda-builder:cpu-2.4
496 build_name: conda-py3_11-cpu
499 github-token: ${{ secrets.GITHUB_TOKEN }}
500 conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}
501 conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }}
502 uses: ./.github/workflows/_binary-upload.yml
503 conda-py3_12-cpu-build:
505 runs-on: macos-14-xlarge
506 timeout-minutes: 240
517 # For sccache access (only on non-forked PRs)
524 - name: Populate binary env
533 - name: Install conda and dependencies
535 …# Install conda, setup-miniconda messes with the path that messes with the ruby stuff we do later …
536 …curl --retry 3 --retry-all-errors -o "${RUNNER_TEMP}/conda.sh" "https://repo.anaconda.com/minicond…
538 /bin/bash "${RUNNER_TEMP}/conda.sh" -b -p "${RUNNER_TEMP}/anaconda"
540 if [ -d "/Applications/Xcode_14.3.1.app" ]; then
542 elif [ -d "/Applications/Xcode_13.3.1.app" ]; then
545 - name: Checkout PyTorch
546 uses: malfet/checkout@silent-checkout
550 quiet-checkout: true
551 - name: Clean PyTorch checkout
554 git clean -fxd
555 working-directory: pytorch
556 - name: Checkout pytorch/builder
557 uses: malfet/checkout@silent-checkout
563 quiet-checkout: true
564 - name: Clean pytorch/builder checkout
567 git clean -fxd
568 working-directory: builder
569 - name: Install sccache (only for non-forked PRs, and pushes to trunk)
570 uses: nick-fields/retry@v2.8.2
571 …if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.rep…
577 …sudo curl --retry 3 --retry-all-errors https://s3.amazonaws.com/ossci-macos/sccache_v2.15 --output…
579 echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}"
580 - name: Populate binary env
585 - name: Build PyTorch binary
590 - uses: actions/upload-artifact@v3
593 name: conda-py3_12-cpu
594 retention-days: 14
595 if-no-files-found: error
597 conda-py3_12-cpu-upload: # Uploading
600 id-token: write
602 needs: conda-py3_12-cpu-build
611 DOCKER_IMAGE: pytorch/conda-builder:cpu-2.4
613 build_name: conda-py3_12-cpu
616 github-token: ${{ secrets.GITHUB_TOKEN }}
617 conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}
618 conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }}
619 uses: ./.github/workflows/_binary-upload.yml