Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
le-edubar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
le6
le-edubar
Commits
1d094053
There was a problem fetching the pipeline summary.
Commit
1d094053
authored
Jun 14, 2018
by
Alessandro Elias
Browse files
Options
Downloads
Plain Diff
Merge branch 'issue/463' into 'develop'
SCRUM#463
: Add more testing stages on CI See merge request
!32
parents
a9a4e243
cd349cac
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!38
Develop to master
,
!32
SCRUM#463: Add more testing stages on CI
Pipeline
#
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.deploy.sh
+11
-3
11 additions, 3 deletions
.deploy.sh
.gitlab-ci.yml
+26
-1
26 additions, 1 deletion
.gitlab-ci.yml
with
37 additions
and
4 deletions
.deploy.sh
+
11
−
3
View file @
1d094053
#!/bin/bash
# shellcheck disable=SC2029
# This script uploads an includes a .deb package in our debian repository.
# The distribution is chosen based on the gitlab-ci stage we are on.
...
...
@@ -10,8 +11,16 @@ ssh-add <(echo "$PRIV_KEY")
echo
"Deploy job name:
$CI_JOB_NAME
"
if
[
"
$CI_JOB_NAME
"
=
"deploy_for_
testing
"
]
;
then
if
[
"
$CI_JOB_NAME
"
=
"deploy_for_
unstable
"
]
;
then
dput
-u
-f
--config
=
dput.cf repo build/
*
.changes
elif
[
"
$CI_JOB_NAME
"
=
"deploy_for_testing"
]
;
then
CHANGELOG
=
"package/debian/changelog"
LINE
=
$(
head
-n
1
$CHANGELOG
)
PACKAGE
=
$(
echo
"
$LINE
"
|
cut
-d
' '
-f1
)
VERSION
=
$(
echo
"
$LINE
"
|
cut
-d
' '
-f2
|
grep
-o
-E
'[0-9]*\.[0-9]*\.[0-9]*'
)
REPREPRO_CMD
=
"reprepro -Vb /home/repository/www/le6 copysrc testing unstable
$PACKAGE
$VERSION
"
ssh
-o
StrictHostKeyChecking
=
no
-i
~/.ssh/id_rsa repository@repo.c3sl.ufpr.br
"
$REPREPRO_CMD
"
elif
[
"
$CI_JOB_NAME
"
=
"deploy_for_stable"
]
;
then
CHANGELOG
=
"package/debian/changelog"
LINE
=
$(
head
-n
1
$CHANGELOG
)
...
...
@@ -19,6 +28,5 @@ elif [ "$CI_JOB_NAME" = "deploy_for_stable" ]; then
VERSION
=
$(
echo
"
$LINE
"
|
cut
-d
' '
-f2
|
grep
-o
-E
'[0-9]*\.[0-9]*\.[0-9]*'
)
REPREPRO_CMD
=
"reprepro -Vb /home/repository/www/le6 copysrc stable testing
$PACKAGE
$VERSION
"
# shellcheck disable=SC2029
ssh
-o
StrictHostKeyChecking
=
no
-i
~/.ssh/id_rsa repository@repo.c3sl.ufpr.br
"
$REPREPRO_CMD
"
fi
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
26
−
1
View file @
1d094053
...
...
@@ -43,12 +43,37 @@ test:
-
ubuntu
-
regular
script
:
-
echo "Installation test:"
-
apt-get update && apt-get install -y glib2.0 && apt-get -y install $(pwd)/build/*.deb language-pack-gnome-pt language-pack-pt-base
-
echo "Removal test:"
-
pkg_name=$(dpkg -I $(pwd)/build/*.deb | grep Package | head -1 | cut -d ':' -f2)
-
DEBIAN_FRONTEND=noninteractive apt -y remove $pkg_name
-
echo "Getting latest stable package from repo..."
-
DEBIAN_FRONTEND=noninteractive apt-get -y install wget
-
wget http://repo.c3sl.ufpr.br/le6/dists/stable/main/binary-amd64/Packages
-
wget http://repo.c3sl.ufpr.br/le6/$(tail -n +$(grep -n "Package:${pkg_name}" Packages | cut -d ":" -f1) Packages | grep "Filename" | head -1 |cut -d " " -f2)
-
echo "Update test:"
-
DEBIAN_FRONTEND=noninteractive apt-get -y install $(pwd)/*.deb
-
DEBIAN_FRONTEND=noninteractive apt-get -y install $(pwd)/build/*.deb
-
echo "Downgrade test:"
-
DEBIAN_FRONTEND=noninteractive apt-get -y --allow-downgrades install $(pwd)/*.deb
dependencies
:
-
build
deploy_for_unstable
:
stage
:
deploy
only
:
-
develop
tags
:
-
debian-packaging
script
:
-
./.deploy.sh
dependencies
:
-
build
deploy_for_testing
:
stage
:
deploy
when
:
manual
only
:
-
master
tags
:
...
...
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