Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
042fd77c
Unverified
Commit
042fd77c
authored
Jun 23, 2021
by
Jenn Magder
Committed by
GitHub
Jun 23, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check ios-arm64_armv7 directory when validating codesigning entitlements (#85053)
parent
49c08b73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
codesign.dart
dev/conductor/lib/codesign.dart
+3
-3
artifacts_test.dart
...ages/flutter_tools/test/general.shard/artifacts_test.dart
+4
-4
No files found.
dev/conductor/lib/codesign.dart
View file @
042fd77c
...
...
@@ -179,11 +179,11 @@ class CodesignCommand extends Command<void> {
'artifacts/engine/darwin-x64-release/FlutterMacOS.framework/Versions/A/FlutterMacOS'
,
'artifacts/engine/darwin-x64/FlutterMacOS.framework/Versions/A/FlutterMacOS'
,
'artifacts/engine/darwin-x64/font-subset'
,
'artifacts/engine/ios-profile/Flutter.xcframework/ios-arm
v7_arm64
/Flutter.framework/Flutter'
,
'artifacts/engine/ios-profile/Flutter.xcframework/ios-arm
64_armv7
/Flutter.framework/Flutter'
,
'artifacts/engine/ios-profile/Flutter.xcframework/ios-x86_64-simulator/Flutter.framework/Flutter'
,
'artifacts/engine/ios-release/Flutter.xcframework/ios-arm
v7_arm64
/Flutter.framework/Flutter'
,
'artifacts/engine/ios-release/Flutter.xcframework/ios-arm
64_armv7
/Flutter.framework/Flutter'
,
'artifacts/engine/ios-release/Flutter.xcframework/ios-x86_64-simulator/Flutter.framework/Flutter'
,
'artifacts/engine/ios/Flutter.xcframework/ios-arm
v7_arm64
/Flutter.framework/Flutter'
,
'artifacts/engine/ios/Flutter.xcframework/ios-arm
64_armv7
/Flutter.framework/Flutter'
,
'artifacts/engine/ios/Flutter.xcframework/ios-x86_64-simulator/Flutter.framework/Flutter'
,
'artifacts/ios-deploy/ios-deploy'
,
]
...
...
packages/flutter_tools/test/general.shard/artifacts_test.dart
View file @
042fd77c
...
...
@@ -89,7 +89,7 @@ void main() {
.
createSync
(
recursive:
true
);
fileSystem
.
directory
(
xcframeworkPath
)
.
childDirectory
(
'ios-arm
v7_arm64
'
)
.
childDirectory
(
'ios-arm
64_armv7
'
)
.
childDirectory
(
'Flutter.framework'
)
.
createSync
(
recursive:
true
);
expect
(
...
...
@@ -103,7 +103,7 @@ void main() {
expect
(
artifacts
.
getArtifactPath
(
Artifact
.
flutterFramework
,
platform:
TargetPlatform
.
ios
,
mode:
BuildMode
.
release
,
environmentType:
EnvironmentType
.
physical
),
fileSystem
.
path
.
join
(
xcframeworkPath
,
'ios-arm
v7_arm64
'
,
'Flutter.framework'
),
fileSystem
.
path
.
join
(
xcframeworkPath
,
'ios-arm
64_armv7
'
,
'Flutter.framework'
),
);
expect
(
artifacts
.
getArtifactPath
(
Artifact
.
flutterXcframework
,
platform:
TargetPlatform
.
ios
,
mode:
BuildMode
.
release
),
...
...
@@ -254,7 +254,7 @@ void main() {
.
createSync
(
recursive:
true
);
fileSystem
.
directory
(
xcframeworkPath
)
.
childDirectory
(
'ios-arm
v7_arm64
'
)
.
childDirectory
(
'ios-arm
64_armv7
'
)
.
childDirectory
(
'Flutter.framework'
)
.
createSync
(
recursive:
true
);
expect
(
...
...
@@ -275,7 +275,7 @@ void main() {
environmentType:
EnvironmentType
.
physical
,
),
fileSystem
.
path
.
join
(
xcframeworkPath
,
'ios-arm
v7_arm64
'
,
'Flutter.framework'
),
.
join
(
xcframeworkPath
,
'ios-arm
64_armv7
'
,
'Flutter.framework'
),
);
expect
(
artifacts
.
getArtifactPath
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment