Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[iOS] Remove the context for building jobs, only keep it for nightly build uploading #3622

Merged
merged 2 commits into from
Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[iOS] Remove the context for building jobs, only keep it for nightly …
…build uploading

[ghstack-poisoned]
  • Loading branch information
husthyc committed Mar 30, 2021
commit dc72d0c0ce0bafc1c73586295108084504c589b6
4 changes: 0 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1498,13 +1498,11 @@ workflows:
- torch_onnx_test
- binary_ios_build:
build_environment: binary-libtorchvision_ops-ios-12.0.0-x86_64
context: org-member
ios_arch: x86_64
ios_platform: SIMULATOR
name: binary_libtorchvision_ops_ios_12.0.0_x86_64
- binary_ios_build:
build_environment: binary-libtorchvision_ops-ios-12.0.0-arm64
context: org-member
ios_arch: arm64
ios_platform: OS
name: binary_libtorchvision_ops_ios_12.0.0_arm64
Expand Down Expand Up @@ -1657,7 +1655,6 @@ workflows:
- torch_onnx_test
- binary_ios_build:
build_environment: nightly-binary-libtorchvision_ops-ios-12.0.0-x86_64
context: org-member
filters:
branches:
only:
Expand All @@ -1667,7 +1664,6 @@ workflows:
name: nightly_binary_libtorchvision_ops_ios_12.0.0_x86_64
- binary_ios_build:
build_environment: nightly-binary-libtorchvision_ops-ios-12.0.0-arm64
context: org-member
filters:
branches:
only:
Expand Down
1 change: 0 additions & 1 deletion .circleci/regenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ def ios_workflows(indentation=6, nightly=False):
build_job_names.append(name)
build_job = {
'build_environment': f'{env_prefix}binary-libtorchvision_ops-ios-12.0.0-{arch}',
'context': 'org-member',
'ios_arch': arch,
'ios_platform': platform,
'name': name,
Expand Down