From: Maria Matejka Date: Wed, 12 Feb 2025 20:30:55 +0000 (+0100) Subject: Added build for Debian 12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73bae96fc8f765b2aaa0ec4a2d76280926c5d288;p=thirdparty%2Fbird.git Added build for Debian 12 Needed right now for a customer. There is a better fix pending. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1b84ce8fc..517aae843 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -80,6 +80,10 @@ build-debian-11-amd64: <<: *build-linux image: registry.nic.cz/labs/bird:debian-11-amd64 +build-debian-12-amd64: + <<: *build-linux + image: registry.nic.cz/labs/bird:debian-12-amd64 + #build-debian-11-i386: # <<: *build-linux # image: registry.nic.cz/labs/bird:debian-11-i386 @@ -188,6 +192,8 @@ build-opensuse-15.3-amd64: .pkg-deb: &pkg-deb stage: pkg script: + # create venv only if it's installed + - if python3 -m venv venv; then . venv/bin/activate; fi - pip3 install apkg - apkg build #- apkg install -y pkg/pkgs/*/*/*.deb @@ -231,6 +237,11 @@ pkg-debian-11-amd64: needs: [build-debian-11-amd64] image: registry.nic.cz/labs/bird:debian-11-amd64 +pkg-debian-12-amd64: + <<: *pkg-deb + needs: [build-debian-12-amd64] + image: registry.nic.cz/labs/bird:debian-12-amd64 + pkg-fedora-30-amd64: <<: *pkg-rpm-wa needs: [build-fedora-30-amd64]