From 7fa64043c931078afaecbe0d4734973f7ce9ab12 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sat, 29 Dec 2018 04:28:40 +0000 Subject: [PATCH] Add libyaml-syck-perl dependency to .gitlab-ci + Dockerfile Signed-off-by: Niels Thykier --- .gitlab-ci.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9d091e8..fb0947b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ tests-stretch: image: debian:stretch script: - apt-get update - - apt-get install -y python3 python3-apt python3-yaml python3-pytest git rsync libclass-accessor-perl libdpkg-perl + - apt-get install -y python3 python3-apt python3-yaml python3-pytest git rsync libclass-accessor-perl libdpkg-perl libyaml-syck-perl - ci/gitlab-ci-runner tests-sid: @@ -11,7 +11,7 @@ tests-sid: image: debian:sid script: - apt-get update - - apt-get install -y python3 python3-apt python3-yaml python3-coverage python3-pytest python3-pytest-cov git rsync libclass-accessor-perl libdpkg-perl + - apt-get install -y python3 python3-apt python3-yaml python3-coverage python3-pytest python3-pytest-cov git rsync libclass-accessor-perl libdpkg-perl libyaml-syck-perl - ci/gitlab-ci-runner --with-coverage artifacts: paths: diff --git a/Dockerfile b/Dockerfile index 3790899..4a06bb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM debian:stable WORKDIR /britney ADD . /britney -RUN apt-get update && apt-get install --no-install-recommends --assume-yes python3 python3-apt python3-yaml python3-coverage python3-nose rsync libclass-accessor-perl libdpkg-perl curl +RUN apt-get update && apt-get install --no-install-recommends --assume-yes python3 python3-apt python3-yaml python3-coverage python3-nose rsync libclass-accessor-perl libdpkg-perl libyaml-syck-perl curl