Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • le6/le-parental-control
1 result
Show changes
Commits on Source (9)
......@@ -29,48 +29,14 @@ test:
- ubuntu
- regular
script:
# TODO: find a way to get the dependencies automatically
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales language-pack-gnome-pt language-pack-pt-base wget
- apt-get update && apt-get install -y wget
- echo "deb http://repo.c3sl.ufpr.br/le6/ unstable main" > /etc/apt/sources.list.d/le6.list
- wget -O- http://repo.c3sl.ufpr.br/le6/le.c3sl.ufpr.br.key | apt-key add -
- echo "deb http://repo.c3sl.ufpr.br/le6/ testing main" > /etc/apt/sources.list.d/le6.list && apt-get update
- locale-gen pt_BR.UTF-8
- export LANG=pt_BR.UTF-8
- echo "Installation test:"
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install $(pwd)/build/*.deb
- apt-get update && DEBIAN_FRONTEND=noninteractive 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)
- pkg_name=$(head -n 1 package/debian/changelog | cut -d' ' -f1)
- 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_unstable:
stage: deploy
only:
- develop
tags:
- debian-packaging
script:
- ./.deploy.sh
dependencies:
- build
......
......@@ -6,5 +6,4 @@ incoming = /home/repository/www/le6/incoming
allow_unsigned_uploads = 1
ssh_config_options = User=repository
StrictHostKeyChecking=no
UserKnownHostsFile=/dev/null
post_upload_command = ssh -l repository repo.c3sl.ufpr.br "reprepro -Vb /home/repository/www/le6 processincoming default"
post_upload_command = ssh -l repository -i ~/.ssh/id_rsa repo.c3sl.ufpr.br "reprepro -Vb /home/repository/www/le6 processincoming default"
le-parental-control (0.0.10ubuntu1) unstable; urgency=medium
le-parental-control (0.0.13) unstable; urgency=medium
* Updated version to internal control
-- Guilherme Becker Agge <lesuporte@c3sl.ufpr.br> Thu, 02 Aug 2018 10:01:18 -0300
le-parental-control (0.0.12) unstable; urgency=medium
* Family shild is disable by default when installing in private mode
-- Stephanie Briere Americo <lesuporte@c3sl.ufpr.br> Wed, 25 Jul 2018 11:35:53 -0300
le-parental-control (0.0.10) unstable; urgency=medium
le-parental-control (0.0.11) unstable; urgency=medium
* Add more testing stages on CI (Closes: #463)
* Change deploy to unstable (Closes: #492)
......