From c05ed411ba4b051d211a89d50cfe86fd4b4a99b5 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Sat, 17 Dec 2022 00:44:41 +0100 Subject: [PATCH] Try to fix CI --- .woodpecker.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index f0b938a..21f2305 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -3,11 +3,15 @@ pipeline: group: test image: pipelinecomponents/pylint commands: - - pip install https://gitea.zionetrix.net/bn8/python-mylib.git - - pylint check_ceph_usage + - echo "deb http://debian.zionetrix.net stable main" > /etc/apt/sources.list.d/zionetrix.list + - DEBIAN_FRONTEND=noninteractive apt-get -qq -o Acquire::AllowInsecureRepositories=true -o Acquire::AllowDowngradeToInsecureRepositories=true update < /dev/null > /dev/null + - DEBIAN_FRONTEND=noninteractive apt-get -qq -o APT::Get::AllowUnauthenticated=true install --yes zionetrix-archive-keyring < /dev/null > /dev/null + - DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null + - DEBIAN_FRONTEND=noninteractive apt-get -qq -y install python3-mylib + - pylint updateMemberOf test-flake8: group: test image: pipelinecomponents/flake8 commands: - - flake8 check_ceph_usage + - flake8 updateMemberOf