From eeee8f625015e75c3e981be9bbfcccbb37ae8543 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Wed, 14 Sep 2022 14:09:51 +0200 Subject: [PATCH] Make Debian "bullseye" the default image Also, ShellCheck has been moved from "sid" to "bullseye". --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a950663..00e0d8e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ .test_job: &test_job stage: test + image: registry.gitlab.isc.org/isc-projects/images/bind9:debian-bullseye-amd64 tags: - amd64 - docker @@ -7,18 +8,15 @@ black: <<: *test_job - image: registry.gitlab.isc.org/isc-projects/images/bind9:debian-bullseye-amd64 script: - black $(git ls-files '*.py') pylint: <<: *test_job - image: registry.gitlab.isc.org/isc-projects/images/bind9:debian-bullseye-amd64 script: - find . -name "*.py" -execdir pylint {} + shellcheck: <<: *test_job - image: registry.gitlab.isc.org/isc-projects/images/bind9:debian-sid-amd64 script: - find . -name "*.sh" -execdir shellcheck -x {} + -- GitLab