Skip to content

Commit

Permalink
Fix broken periodic workflow after removing ios secret (pytorch#85664)
Browse files Browse the repository at this point in the history
Broken after pytorch#85597, i.e. https://github.com/pytorch/pytorch/actions/runs/3130970082

```
The workflow is not valid. .github/workflows/periodic.yml (Line: 189, Col: 26): Invalid secret, IOS_CERT_KEY_2022 is not defined in the referenced workflow. .github/workflows/periodic.yml (Line: 190, Col: 24): Invalid secret, IOS_CERT_SECRET is not defined in the referenced workflow.
```

Pull Request resolved: pytorch#85664
Approved by: https://github.com/clee2000, https://github.com/kit1980, https://github.com/janeyx99, https://github.com/ZainRizvi, https://github.com/malfet
  • Loading branch information
huydhn authored and pytorchmergebot committed Sep 26, 2022
1 parent e447103 commit 1a2734e
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,6 @@ jobs:
build-environment: ios-12-5-1-x86-64-coreml
ios-platform: SIMULATOR
ios-arch: x86_64
secrets:
IOS_CERT_KEY_2022: ${{ secrets.IOS_CERT_KEY_2022 }}
IOS_CERT_SECRET: ${{ secrets.IOS_CERT_SECRET}}
IOS_DEV_TEAM_ID: ${{ secrets.IOS_DEV_TEAM_ID}}
IOS_SIGN_KEY_2022: ${{ secrets.IOS_SIGN_KEY_2022 }}

ios-12-5-1-arm64:
name: ios-12-5-1-arm64
Expand All @@ -198,11 +193,6 @@ jobs:
build-environment: ios-12-5-1-arm64
ios-platform: OS
ios-arch: arm64
secrets:
IOS_CERT_KEY_2022: ${{ secrets.IOS_CERT_KEY_2022 }}
IOS_CERT_SECRET: ${{ secrets.IOS_CERT_SECRET}}
IOS_DEV_TEAM_ID: ${{ secrets.IOS_DEV_TEAM_ID}}
IOS_SIGN_KEY_2022: ${{ secrets.IOS_SIGN_KEY_2022 }}

ios-12-5-1-arm64-coreml:
name: ios-12-5-1-arm64-coreml
Expand All @@ -211,11 +201,6 @@ jobs:
build-environment: ios-12-5-1-arm64-coreml
ios-platform: OS
ios-arch: arm64
secrets:
IOS_CERT_KEY_2022: ${{ secrets.IOS_CERT_KEY_2022 }}
IOS_CERT_SECRET: ${{ secrets.IOS_CERT_SECRET}}
IOS_DEV_TEAM_ID: ${{ secrets.IOS_DEV_TEAM_ID}}
IOS_SIGN_KEY_2022: ${{ secrets.IOS_SIGN_KEY_2022 }}

ios-12-5-1-arm64-custom-ops:
name: ios-12-5-1-arm64-custom-ops
Expand All @@ -224,11 +209,6 @@ jobs:
build-environment: ios-12-5-1-arm64-custom-ops
ios-platform: OS
ios-arch: arm64
secrets:
IOS_CERT_KEY_2022: ${{ secrets.IOS_CERT_KEY_2022 }}
IOS_CERT_SECRET: ${{ secrets.IOS_CERT_SECRET}}
IOS_DEV_TEAM_ID: ${{ secrets.IOS_DEV_TEAM_ID}}
IOS_SIGN_KEY_2022: ${{ secrets.IOS_SIGN_KEY_2022 }}

ios-12-5-1-arm64-metal:
name: ios-12-5-1-arm64-metal
Expand All @@ -237,11 +217,6 @@ jobs:
build-environment: ios-12-5-1-arm64-metal
ios-platform: OS
ios-arch: arm64
secrets:
IOS_CERT_KEY_2022: ${{ secrets.IOS_CERT_KEY_2022 }}
IOS_CERT_SECRET: ${{ secrets.IOS_CERT_SECRET}}
IOS_DEV_TEAM_ID: ${{ secrets.IOS_DEV_TEAM_ID}}
IOS_SIGN_KEY_2022: ${{ secrets.IOS_SIGN_KEY_2022 }}

buck-build-test:
name: buck-build-test
Expand Down

0 comments on commit 1a2734e

Please sign in to comment.