diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 14:30:35 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 14:30:35 -0300 |
commit | b9eee2c6e44b24ae6488498e83ff24e9864813b3 (patch) | |
tree | 40a03856f8e72b829200b1288f24e075aabd7ee0 | |
parent | d8b8bc12289a7da31eaec87345803e1a9459b30a (diff) | |
download | keyringer-b9eee2c6e44b24ae6488498e83ff24e9864813b3.tar.gz keyringer-b9eee2c6e44b24ae6488498e83ff24e9864813b3.tar.bz2 |
Fix: CI: debian: pbuilder configuration (#10)
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7a052d7..004a983 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,12 @@ --- debian: - image: debian:testing + image: debian:stable script: - apt-get update - apt-get install -y git - apt-get install -y git-buildpackage lintian piuparts + - echo 'DISTRIBUTION=sid' > ~/.pbuilderrc + - echo 'MIRRORSITE="ftp.us.debian.org/debian"' >> ~/.pbuilderrc - git checkout debian - gbp buildpackage --git-ignore-new #- lintian --allow-root -v --pedantic ../keyringer_*.deb |