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
31494c68
Commit
31494c68
authored
2 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
jenkinsfile: add stages
Change-Id: Ie72e3b57c558455055784ebcd24f410680a5c449
parent
6c70897e
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/ci/client-qt-gnulinux/Jenkinsfile
+57
-55
57 additions, 55 deletions
extras/ci/client-qt-gnulinux/Jenkinsfile
with
57 additions
and
55 deletions
extras/ci/client-qt-gnulinux/Jenkinsfile
+
57
−
55
View file @
31494c68
...
...
@@ -51,70 +51,72 @@ pipeline {
description:
'The Gerrit refspec to fetch.'
)
}
stage
(
'SCM Checkout'
)
{
deleteDir
()
// Checkout jami-project to obtain daemon/LRC/client-qt repositories
sh
"""
stages
{
stage
(
'SCM Checkout'
)
{
deleteDir
()
// Checkout jami-project to obtain daemon/LRC/client-qt repositories
sh
"""
git clone --depth=1 --branch=master https://${JAMI_GERRIT_URL}/jami-project
cd jami-project
# git submodule update --init daemon lrc client-qt
git submodule update --init daemon client-qt
git submodule foreach 'git checkout master'
git clone --depth=1 --branch=master https://${JAMI_GERRIT_URL}/jami-project
cd jami-project
# git submodule update --init daemon lrc client-qt
git submodule update --init daemon client-qt
git submodule foreach 'git checkout master'
cd client-qt
git fetch "https://${JAMI_GERRIT_URL}/jami-client-qt" ${GERRIT_REFSPEC}
git checkout FETCH_HEAD
git submodule update --init --recursive
cd ..
"""
topDir
=
pwd
()
+
'/jami-project'
}
dir
(
topDir
)
{
stage
(
'Building Docker Image'
)
{
docker
.
build
(
'client-validation'
,
"-f client-qt/extras/build/docker/Dockerfile.client-qt-gnulinux --no-cache ."
)
cd client-qt
git fetch "https://${JAMI_GERRIT_URL}/jami-client-qt" ${GERRIT_REFSPEC}
git checkout FETCH_HEAD
git submodule update --init --recursive
cd ..
"""
topDir
=
pwd
()
+
'/jami-project'
}
d
ef
jenkinsUID
=
sh
(
returnStdout:
true
,
script:
'id -u jenkins'
).
replaceAll
(
"\n"
,
''
).
trim
()
def
jenkinsGID
=
sh
(
returnStdout:
true
,
script:
'id -g jenkins'
).
replaceAll
(
"\n"
,
''
).
trim
()
d
ef
jenkinsUser
=
jenkinsUID
+
':'
+
jenkinsGID
def
cpuCount
=
sh
returnStdout:
true
,
script:
'nproc || echo -n 4'
d
ir
(
topDir
)
{
stage
(
'Building Docker Image'
)
{
d
ocker
.
build
(
'client-validation'
,
"-f client-qt/extras/build/docker/Dockerfile.client-qt-gnulinux --no-cache ."
)
}
docker
.
image
(
'client-validation'
).
withRun
(
'-t
-u
'
+
jenkins
User
+
' -v '
+
pwd
()+
':/foo:rw -w /foo -e BATCH_MODE=1'
,
'/bin/bash'
)
{
container
->
code:
{
def
base_cmd
=
'docker exec -t '
+
container
.
id
+
" sh -c '"
def
exec_cmd
=
{
cmd
->
sh
base_cmd
+
cmd
+
"'"
}
def
jenkinsUID
=
sh
(
returnStdout:
true
,
script:
'id
-u jenkins
'
).
replaceAll
(
"\n"
,
''
).
trim
()
def
jenkinsGID
=
sh
(
returnStdout:
true
,
script:
'id -g jenkins'
).
replaceAll
(
"\n"
,
''
).
trim
()
def
jenkinsUser
=
jenkinsUID
+
':'
+
jenkinsGID
def
cpuCount
=
sh
returnStdout:
true
,
script:
'nproc || echo -n 4'
def
dockerTopDir
=
'/foo'
def
daemonDir
=
dockerTopDir
+
'/daemon'
def
clientDir
=
docker
TopDir
+
'/client-qt'
def
installDir
=
dockerTopDir
+
'/install'
docker
.
image
(
'client-validation'
).
withRun
(
'-t -u '
+
jenkinsUser
+
' -v '
+
pwd
()+
':/foo:rw -w /foo -e BATCH_MODE=1'
,
'/bin/bash'
)
{
container
->
code:
{
def
base_cmd
=
'
docker
exec -t '
+
container
.
id
+
" sh -c '"
def
exec_cmd
=
{
cmd
->
sh
base_cmd
+
cmd
+
"'"
}
stage
(
'Build Client'
)
{
ansiColor
(
'css'
)
{
exec_cmd
(
"""
cd ${clientDir}
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=${installDir}/client-qt \
-DLIBJAMI_INCLUDE_DIR=${daemonDir}/src/jami \
-DLIBJAMI_XML_INTERFACES_DIR=${daemonDir}/bin/dbus \
-DCMAKE_PREFIX_PATH=/usr/lib/libqt-jami \
-DENABLE_TESTS=True
make -j${cpuCount}
make install
"""
)
def
dockerTopDir
=
'/foo'
def
daemonDir
=
dockerTopDir
+
'/daemon'
def
clientDir
=
dockerTopDir
+
'/client-qt'
def
installDir
=
dockerTopDir
+
'/install'
stage
(
'Build Client'
)
{
ansiColor
(
'css'
)
{
exec_cmd
(
"""
cd ${clientDir}
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=${installDir}/client-qt \
-DLIBJAMI_INCLUDE_DIR=${daemonDir}/src/jami \
-DLIBJAMI_XML_INTERFACES_DIR=${daemonDir}/bin/dbus \
-DCMAKE_PREFIX_PATH=/usr/lib/libqt-jami \
-DENABLE_TESTS=True
make -j${cpuCount}
make install
"""
)
}
}
}
stage
(
'Run Tests'
)
{
ansiColor
(
'css'
)
{
exec_cmd
(
"""
cd ${clientDir}
cd tests/qml
../../../build/tests/qml_tests
"""
)
stage
(
'Run Tests'
)
{
ansiColor
(
'css'
)
{
exec_cmd
(
"""
cd ${clientDir}
cd tests/qml
../../../build/tests/qml_tests
"""
)
}
}
}
}
...
...
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