diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 15:12:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 15:12:43 -0300 |
commit | ad5fa07606783b91a8a014de5287f137aa51987b (patch) | |
tree | 5b62670e299f7e2a92afeca75c5d7eec78ac598a | |
parent | 1e0f16d44972193968e206590f10ed0c9e887a78 (diff) | |
download | keyringer-ad5fa07606783b91a8a014de5287f137aa51987b.tar.gz keyringer-ad5fa07606783b91a8a014de5287f137aa51987b.tar.bz2 |
Fix: CI: debian: comment about the pbuilder configuration (#10)
-rw-r--r-- | .gitlab-ci.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 91c302c..4dfa4d2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,28 @@ debian: image: debian:stable script: # Configure pbuilder + # + # This should be done before pbuilder is installed. + # Pbuilder is a dependency of git-buildpackage. + # + # With doing this, pbuilder may fail to detect MIRRORSITE during package installation, + # giving errors like + # + # Configuring pbuilder + # -------------------- + # Default mirror not found + # Mirror information detection failed and the user provided no mirror + # information. + # Please enter valid mirror information. + # Please enter the default mirror you want to be used by pbuilder. + # If you leave this field blank, there will be one attempt to autodetect this + # information. If this attempt fails, you will be prompted again to insert some + # valid mirror information. + # Here is a valid mirror example: http://deb.debian.org/debian + # Default mirror site: + # Use of uninitialized value $_[1] in join or string at + # /usr/share/perl5/Debconf/DbDriver/Stack.pm line 112. + # - echo 'DISTRIBUTION=sid' > /etc/pbuilderrc - echo 'MIRRORSITE=http://http.debian.net/debian/' >> /etc/pbuilderrc |