1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
# Note:
# If you change a dockerfile as a first commit on a new branch,
# it will not trigger the image rebuild on a push.
# For that you need to push another commit. Have fun!
distros:
# CentOS 7 with quite some hacks
- name: centos-7-amd64
variables:
LC_ALL: en_US.UTF-8
CC: /opt/rh/devtoolset-8/root/usr/bin/gcc
type: pkg-rpm-wa
{% for name in (
'centos-8',
'rocky-08',
'rocky-09',
'fedora-32',
'fedora-33',
) -%}
- name: {{ name }}-amd64
type: pkg-rpm-wa
{% endfor %}
# For some unknown reason we also require older Python packages
# for OpenSUSE even with the recent versions.
{% for num in (0,1,2,3,4,5) -%}
- name: opensuse-15.{{ num }}-amd64
type: pkg-rpm-wa
{% endfor %}
# Fedora regular builds
{% for num in (34, 35, 36, 37, 38, 39, 40, 41, 42) -%}
- name: fedora-{{ num }}-amd64
type: pkg-rpm
{% endfor %}
# Debian-based legacy builds
# Ubuntu 18.04 has issues with newer version of beautifulsoup4 and old python
# Debian 11 has issues with markupsafe v3.0.3
{% for name in (
'ubuntu-18.04-amd64',
'debian-11-i386',
'debian-11-amd64',
) -%}
- name: {{ name }}
type: pkg-deb-legacy
{% endfor %}
# Debian regular builds
{% for num in (10, 12, 13, 'testing') -%}
{% for arch in ('amd64', 'i386') -%}
- name: debian-{{num}}-{{arch}}
type: pkg-deb
{% endfor %}
{% endfor %}
# Ubuntu regular builds
{% for num in ('20.04', '22.04', '24.04', '24.10') -%}
- name: ubuntu-{{ num }}-amd64
type: pkg-deb
{% endfor %}
birdlab:
- name: openbsd-75
variables:
AUTOCONF_VERSION: "2.71"
- name: openbsd-76
variables:
AUTOCONF_VERSION: "2.72"
{% for num in ("09", "10") -%}
- name: netbsd-{{ num }}
{% endfor %}
{% for num in (13, 14) -%}
- name: freebsd-{{ num }}
- name: freebsd-{{ num }}-netlink
dist: freebsd-{{ num }}
variables:
CONFIGURE_OPTIONS: --with-sysconfig=bsd-netlink --disable-client
{% endfor %}
partial_build_image:
name: debian-12-amd64
partial_build:
- protocols: aggregator
- protocols: babel
- protocols: bfd
- protocols: bgp
- protocols: bgp,bmp
- protocols: l3vpn
- protocols: mrt
- protocols: ospf
- protocols: pipe
- protocols: radv
- protocols: rip
- protocols: rpki
- protocols: static
netlab:
- name: babel-base
- name: babel-auth
- name: ospf-base
- name: ospf-default
- name: ospf-priority
- name: ospf-nbma
- name: ospf-ptmp
- name: ospf-authentication
- name: ospf-bfd
- name: ospf-custom
- name: ospf-area
- name: ospf-vrf
- name: bgp-base
- name: bgp-auth
- name: bgp-int
- name: bgp-merged
- name: bgp-flowspec
- name: bgp-rs-multitab
- name: bgp-rs-singletab
- name: ebgp-graceful
- name: ebgp-loop
- name: ebgp-star
- name: ebgp-role
- name: ebgp-import-limit
- name: ebgp-hostname
- name: ibgp-loop
- name: ibgp-loop-big
- name: ibgp-flat
- name: rip-base
- name: kernel-learn
- name: mpls-bgp
- name: mpls-bgp-l3vpn
|