Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-ios
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-ios
Commits
5b8c34a4
Commit
5b8c34a4
authored
3 weeks ago
by
Kateryna Kostiuk
Browse files
Options
Downloads
Patches
Plain Diff
build: clean build artifacts
Change-Id: Ic858a53cddc849755097753fce81c0f7b3a8b95c
parent
ea6f5d40
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compile-ios.sh
+14
-1
14 additions, 1 deletion
compile-ios.sh
with
14 additions
and
1 deletion
compile-ios.sh
+
14
−
1
View file @
5b8c34a4
...
...
@@ -131,6 +131,19 @@ echo "Building for ${ARCHS_PLATFORMS[@]}"
cd
"
$DAEMON_DIR
"
# clean build artifacts
# remove existing DEPS folder if it exists
DEPS_DIR
=
"
$IOS_TOP_DIR
/DEPS"
if
[
-d
"
$DEPS_DIR
"
]
;
then
rm
-rf
"
$DEPS_DIR
"
fi
# remove existing XCFramework folder if it exists
XCFRAMEWORK_DIR
=
"
$IOS_TOP_DIR
/xcframework"
if
[
-d
"
$XCFRAMEWORK_DIR
"
]
;
then
rm
-rf
"
$XCFRAMEWORK_DIR
"
fi
for
ARCH_PLATFORM
in
"
${
ARCHS_PLATFORMS
[@]
}
"
do
# Split the architecture and platform
...
...
@@ -261,7 +274,7 @@ done
cd
"
$IOS_TOP_DIR
"
# Create XCFrameworks
XCFRAMEWORK_DIR
=
"
$IOS_TOP_DIR
/xcframework"
mkdir
-p
"
$XCFRAMEWORK_DIR
"
# Copy headers to a common location
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment