Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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-qt
Commits
5508f28c
Commit
5508f28c
authored
1 year ago
by
Andreas Traczyk
Browse files
Options
Downloads
Patches
Plain Diff
packaging: windows: fix Beta deployment script
Change-Id: I8facd465cd0c8eb0509b66b6f87008c6a86e89bd
parent
c59ac1dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extras/scripts/build-windows.py
+3
-3
3 additions, 3 deletions
extras/scripts/build-windows.py
with
3 additions
and
3 deletions
extras/scripts/build-windows.py
+
3
−
3
View file @
5508f28c
...
...
@@ -294,11 +294,11 @@ def build(config_str, qt_dir, tests):
sys
.
exit
(
1
)
def
deploy_runtimes
(
qt_dir
):
def
deploy_runtimes
(
config_str
,
qt_dir
):
"""
Deploy the dependencies to the runtime directory.
"""
print
(
"
Deploying runtime dependencies
"
)
runtime_dir
=
os
.
path
.
join
(
repo_root_dir
,
"
x64
"
,
"
Release
"
)
runtime_dir
=
os
.
path
.
join
(
repo_root_dir
,
"
x64
"
,
config_str
)
stamp_file
=
os
.
path
.
join
(
runtime_dir
,
"
.deploy.stamp
"
)
if
os
.
path
.
exists
(
stamp_file
):
return
...
...
@@ -533,7 +533,7 @@ def main():
if
not
parsed_args
.
skip_build
:
build
(
config_str
,
parsed_args
.
qt
,
do_tests
)
if
not
parsed_args
.
skip_deploy
:
deploy_runtimes
(
parsed_args
.
qt
)
deploy_runtimes
(
config_str
,
parsed_args
.
qt
)
if
parsed_args
.
subcommand
==
"
pack
"
:
do_build
(
False
)
...
...
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