Skip to content

Add iOS prebuilt impeller_sdk#187608

Open
lzm-build wants to merge 2 commits into
flutter:masterfrom
lzm-build:ios-prebuilt-impeller-sdk
Open

Add iOS prebuilt impeller_sdk#187608
lzm-build wants to merge 2 commits into
flutter:masterfrom
lzm-build:ios-prebuilt-impeller-sdk

Conversation

@lzm-build
Copy link
Copy Markdown
Contributor

Fixes #169553

@github-actions github-actions Bot added engine flutter/engine related. See also e: labels. e: impeller Impeller rendering backend issues and features requests labels Jun 5, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request enables building and archiving the standalone Impeller SDK for iOS and iOS Simulator platforms by updating build configurations, dependencies, and documentation. The reviewer identified that the include_paths in mac_ios_engine.json should be relative to the base_path to prevent double-nested path resolution failures, and provided suggestions to correct them.

"base_path": "out/ci/ios_debug_sim/zip_archives/",
"type": "gcs",
"include_paths": [
"out/ci/ios_debug_sim/zip_archives/ios-sim-x64/impeller_sdk.zip"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The paths in include_paths must be relative to the base_path. Including the full path prefix here will cause the archiver to look for the file at a double-nested path, which will fail to find the artifact.

Suggested change
"out/ci/ios_debug_sim/zip_archives/ios-sim-x64/impeller_sdk.zip"
"ios-sim-x64/impeller_sdk.zip"

"base_path": "out/ci/ios_debug_sim_arm64/zip_archives/",
"type": "gcs",
"include_paths": [
"out/ci/ios_debug_sim_arm64/zip_archives/ios-sim-arm64/impeller_sdk.zip"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The paths in include_paths must be relative to the base_path. Including the full path prefix here will cause the archiver to look for the file at a double-nested path, which will fail to find the artifact.

Suggested change
"out/ci/ios_debug_sim_arm64/zip_archives/ios-sim-arm64/impeller_sdk.zip"
"ios-sim-arm64/impeller_sdk.zip"

"base_path": "out/ci/ios_debug/zip_archives/",
"type": "gcs",
"include_paths": [
"out/ci/ios_debug/zip_archives/ios-arm64/impeller_sdk.zip"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The paths in include_paths must be relative to the base_path. Including the full path prefix here will cause the archiver to look for the file at a double-nested path, which will fail to find the artifact.

Suggested change
"out/ci/ios_debug/zip_archives/ios-arm64/impeller_sdk.zip"
"ios-arm64/impeller_sdk.zip"

@lzm-build lzm-build force-pushed the ios-prebuilt-impeller-sdk branch from 923d522 to be22754 Compare June 5, 2026 14:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

e: impeller Impeller rendering backend issues and features requests engine flutter/engine related. See also e: labels.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Impeller Standalone SDK] Support iOS pre-build artifact

1 participant