Skip to content

Commit e934db8

Browse files
[ci] Fix the new LUCI iOS build-all tasks (#3099)
Corrects the name of the tasks; they accidentally used the old "plugins" name rather than the new generic "packages" name that we're moving to for anything that is not actually plugin-specific. Also fixes the script referenced in the build step.
1 parent 619ff49 commit e934db8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ platform_properties:
4545

4646
targets:
4747
### iOS tasks ###
48-
- name: Mac_arm64 ios_build_all_plugins master
48+
- name: Mac_arm64 ios_build_all_packages master
4949
bringup: true
5050
recipe: packages/packages
5151
timeout: 30
@@ -55,7 +55,7 @@ targets:
5555
target_file: ios_build_all_packages.yaml
5656
channel: master
5757

58-
- name: Mac_arm64 ios_build_all_plugins stable
58+
- name: Mac_arm64 ios_build_all_packages stable
5959
bringup: true
6060
recipe: packages/packages
6161
timeout: 30

.ci/targets/ios_build_all_packages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ tasks:
44
- name: create all_packages app
55
script: .ci/scripts/create_all_packages_app.sh
66
- name: build all_packages for iOS debug
7-
script: .ci/scripts/build_all_packages.sh
7+
script: .ci/scripts/build_all_packages_app.sh
88
args: ["ios", "debug", "--no-codesign"]
99
- name: build all_packages for iOS release
10-
script: .ci/scripts/build_all_packages.sh
10+
script: .ci/scripts/build_all_packages_app.sh
1111
args: ["ios", "release", "--no-codesign"]

0 commit comments

Comments
 (0)