Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
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-daemon
Commits
bedbab95
Commit
bedbab95
authored
10 years ago
by
Emmanuel Lepage Vallee
Browse files
Options
Downloads
Patches
Plain Diff
build-system: Make it easier to run the build script locally
refs #51162 Change-Id: I28e04cfa5101bab1ced5af30f2f66765fe789708
parent
f525d18d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/build-system/launch-build-machine-jenkins.sh
+25
-0
25 additions, 0 deletions
tools/build-system/launch-build-machine-jenkins.sh
tools/build-system/setenv.sh
+6
-1
6 additions, 1 deletion
tools/build-system/setenv.sh
with
31 additions
and
1 deletion
tools/build-system/launch-build-machine-jenkins.sh
+
25
−
0
View file @
bedbab95
...
...
@@ -12,6 +12,30 @@
set
-x
#Check dependencies
# Download the KDE client release script
if
!
command
-v
curl
;
then
echo
Please
install
curl
exit
1
fi
# Merge the KDE translation files
if
!
command
-v
ruby
;
then
echo
Please
install
ruby
exit
1
fi
# Download the KDE client and scripts
if
!
command
-v
git
;
then
echo
Please
install
git
exit
1
fi
# Fetch KDE translations, the gnome client use bzr
if
!
command
-v
svn
;
then
echo
Please
install
svn
exit
1
fi
.
`
dirname
$0
`
/setenv.sh
IS_RELEASE
=
...
...
@@ -32,6 +56,7 @@ echo " | SFLPhone build system |"
echo
"
\\
***********************/"
echo
for
PARAMETER
in
$*
do
case
${
PARAMETER
}
in
...
...
This diff is collapsed.
Click to expand it.
tools/build-system/setenv.sh
+
6
−
1
View file @
bedbab95
...
...
@@ -21,6 +21,11 @@ export EDITOR="echo"
export
REFERENCE_REPOSITORY
=
"
${
WORKSPACE
}
"
# In case the script is executed manually, replace the variables set by Jenkins
if
[
"
${
WORKSPACE
}
"
==
""
]
;
then
WORKSPACE
=
"."
fi
export
WORKING_DIR
=
"
${
WORKSPACE
}
/tools/build-system"
export
LAUNCHPAD_DIR
=
"
${
WORKING_DIR
}
/launchpad"
LAUNCHPAD_DISTRIBUTIONS
=(
"quantal"
"saucy"
"trusty"
)
...
...
@@ -31,7 +36,7 @@ cd ${WORKSPACE}
rm
-rf
config.ini
rm
-rf
kde
curl https://projects.kde.org/projects/playground/network/sflphone-kde/repository/revisions/master/raw/data/config.ini
>
config.ini
git clone
git
://anongit.kde.org/kde-dev-scripts
git clone
http
://anongit.kde.org/kde-dev-scripts
ruby kde-dev-scripts/createtarball/create_tarball.rb
-n
-a
sflphone-kde
rm
-rf
kde-dev-scripts
tar
-xpvf
sflphone-kde-
*
.tar.
*
...
...
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