mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
bootstrap: add python3-pyasn1/python3-cryptography for kerberos testing
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Isaac Boukris <iboukris@samba.org>
This commit is contained in:
parent
53402b3530
commit
99b6442487
@ -22,7 +22,7 @@ variables:
|
||||
# Set this to the contents of bootstrap/sha1sum.txt
|
||||
# which is generated by bootstrap/template.py --render
|
||||
#
|
||||
SAMBA_CI_CONTAINER_TAG: f5212e7abcae3208b796c939432ab9bec319264a
|
||||
SAMBA_CI_CONTAINER_TAG: 7414ad7ef9108d406b1f6b17ebce19e32aee9f70
|
||||
#
|
||||
# We use the ubuntu1804 image as default as
|
||||
# it matches what we have on sn-devel-184.
|
||||
|
@ -129,6 +129,7 @@ PKGS = [
|
||||
('mawk', 'gawk'),
|
||||
|
||||
('python3', 'python3'),
|
||||
('python3-cryptography', 'python3-cryptography'), # for krb5 tests
|
||||
('python3-dev', 'python3-devel'),
|
||||
('python3-dbg', ''),
|
||||
('python3-iso8601', ''),
|
||||
@ -137,6 +138,7 @@ PKGS = [
|
||||
('python3-matplotlib', ''),
|
||||
('python3-dnspython', 'python3-dns'),
|
||||
('python3-pexpect', ''), # for wintest only
|
||||
('python3-pyasn1', 'python3-pyasn1'), # for krb5 tests
|
||||
|
||||
('', 'libsemanage-python'),
|
||||
('', 'policycoreutils-python'),
|
||||
@ -418,9 +420,10 @@ RPM_DISTS = {
|
||||
'replace': {
|
||||
'lsb-release': 'redhat-lsb',
|
||||
'python3': 'python36',
|
||||
'python3-crypto': 'python36-crypto',
|
||||
'python3-cryptography': 'python36-cryptography',
|
||||
'python3-devel': 'python36-devel',
|
||||
'python3-dns': 'python36-dns',
|
||||
'python3-pyasn1': 'python36-pyasn1',
|
||||
'python3-gpg': 'python36-gpg',
|
||||
'python3-iso8601' : 'python36-iso8601',
|
||||
'python3-markdown': 'python36-markdown',
|
||||
@ -455,7 +458,6 @@ RPM_DISTS = {
|
||||
'perl-JSON-Parse': '', # does not exist?
|
||||
'perl-Test-Base': 'perl-Test-Simple',
|
||||
'policycoreutils-python': 'python3-policycoreutils',
|
||||
'python3-crypto': '',
|
||||
'quota-devel': '', # FIXME: Add me back, once available!
|
||||
'liburing-devel': '', # not available yet, Add me back, once available!
|
||||
}
|
||||
@ -503,7 +505,6 @@ RPM_DISTS = {
|
||||
'perl-interpreter': '',
|
||||
'procps-ng': 'procps',
|
||||
'python-dns': 'python2-dnspython',
|
||||
'python3-crypto': 'python3-pycrypto',
|
||||
'python3-dns': 'python3-dnspython',
|
||||
'python3-markdown': 'python3-Markdown',
|
||||
'quota-devel': '',
|
||||
@ -536,7 +537,6 @@ RPM_DISTS = {
|
||||
'perl-interpreter': '',
|
||||
'procps-ng': 'procps',
|
||||
'python-dns': 'python2-dnspython',
|
||||
'python3-crypto': 'python3-pycrypto',
|
||||
'python3-dns': 'python3-dnspython',
|
||||
'python3-markdown': 'python3-Markdown',
|
||||
'quota-devel': '',
|
||||
|
@ -83,9 +83,11 @@ yum install -y \
|
||||
procps-ng \
|
||||
psmisc \
|
||||
python36 \
|
||||
python36-cryptography \
|
||||
python36-devel \
|
||||
python36-dns \
|
||||
python36-markdown \
|
||||
python36-pyasn1 \
|
||||
quota-devel \
|
||||
readline-devel \
|
||||
redhat-lsb \
|
||||
|
@ -69,9 +69,11 @@ packages:
|
||||
- procps-ng
|
||||
- psmisc
|
||||
- python36
|
||||
- python36-cryptography
|
||||
- python36-devel
|
||||
- python36-dns
|
||||
- python36-markdown
|
||||
- python36-pyasn1
|
||||
- quota-devel
|
||||
- readline-devel
|
||||
- redhat-lsb
|
||||
|
@ -84,12 +84,14 @@ yum install -y \
|
||||
procps-ng \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-devel \
|
||||
python3-dns \
|
||||
python3-gpg \
|
||||
python3-libsemanage \
|
||||
python3-markdown \
|
||||
python3-policycoreutils \
|
||||
python3-pyasn1 \
|
||||
readline-devel \
|
||||
redhat-lsb \
|
||||
rng-tools \
|
||||
|
@ -69,12 +69,14 @@ packages:
|
||||
- procps-ng
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-devel
|
||||
- python3-dns
|
||||
- python3-gpg
|
||||
- python3-libsemanage
|
||||
- python3-markdown
|
||||
- python3-policycoreutils
|
||||
- python3-pyasn1
|
||||
- readline-devel
|
||||
- redhat-lsb
|
||||
- rng-tools
|
||||
|
@ -81,6 +81,7 @@ apt-get -y install \
|
||||
procps \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-dbg \
|
||||
python3-dev \
|
||||
python3-dnspython \
|
||||
@ -89,6 +90,7 @@ apt-get -y install \
|
||||
python3-markdown \
|
||||
python3-matplotlib \
|
||||
python3-pexpect \
|
||||
python3-pyasn1 \
|
||||
rng-tools \
|
||||
rsync \
|
||||
sed \
|
||||
|
@ -70,6 +70,7 @@ packages:
|
||||
- procps
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-dbg
|
||||
- python3-dev
|
||||
- python3-dnspython
|
||||
@ -78,6 +79,7 @@ packages:
|
||||
- python3-markdown
|
||||
- python3-matplotlib
|
||||
- python3-pexpect
|
||||
- python3-pyasn1
|
||||
- rng-tools
|
||||
- rsync
|
||||
- sed
|
||||
|
@ -83,12 +83,14 @@ dnf install -y \
|
||||
procps-ng \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-devel \
|
||||
python3-dns \
|
||||
python3-gpg \
|
||||
python3-libsemanage \
|
||||
python3-markdown \
|
||||
python3-policycoreutils \
|
||||
python3-pyasn1 \
|
||||
quota-devel \
|
||||
readline-devel \
|
||||
redhat-lsb \
|
||||
|
@ -72,12 +72,14 @@ packages:
|
||||
- procps-ng
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-devel
|
||||
- python3-dns
|
||||
- python3-gpg
|
||||
- python3-libsemanage
|
||||
- python3-markdown
|
||||
- python3-policycoreutils
|
||||
- python3-pyasn1
|
||||
- quota-devel
|
||||
- readline-devel
|
||||
- redhat-lsb
|
||||
|
@ -83,12 +83,14 @@ dnf install -y \
|
||||
procps-ng \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-devel \
|
||||
python3-dns \
|
||||
python3-gpg \
|
||||
python3-libsemanage \
|
||||
python3-markdown \
|
||||
python3-policycoreutils \
|
||||
python3-pyasn1 \
|
||||
quota-devel \
|
||||
readline-devel \
|
||||
redhat-lsb \
|
||||
|
@ -72,12 +72,14 @@ packages:
|
||||
- procps-ng
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-devel
|
||||
- python3-dns
|
||||
- python3-gpg
|
||||
- python3-libsemanage
|
||||
- python3-markdown
|
||||
- python3-policycoreutils
|
||||
- python3-pyasn1
|
||||
- quota-devel
|
||||
- readline-devel
|
||||
- redhat-lsb
|
||||
|
@ -80,9 +80,11 @@ zypper --non-interactive install \
|
||||
python2-semanage \
|
||||
python3 \
|
||||
python3-Markdown \
|
||||
python3-cryptography \
|
||||
python3-devel \
|
||||
python3-dnspython \
|
||||
python3-gpg \
|
||||
python3-pyasn1 \
|
||||
readline-devel \
|
||||
rng-tools \
|
||||
rpcgen \
|
||||
|
@ -68,9 +68,11 @@ packages:
|
||||
- python2-semanage
|
||||
- python3
|
||||
- python3-Markdown
|
||||
- python3-cryptography
|
||||
- python3-devel
|
||||
- python3-dnspython
|
||||
- python3-gpg
|
||||
- python3-pyasn1
|
||||
- readline-devel
|
||||
- rng-tools
|
||||
- rpcgen
|
||||
|
@ -80,9 +80,11 @@ zypper --non-interactive install \
|
||||
python2-semanage \
|
||||
python3 \
|
||||
python3-Markdown \
|
||||
python3-cryptography \
|
||||
python3-devel \
|
||||
python3-dnspython \
|
||||
python3-gpg \
|
||||
python3-pyasn1 \
|
||||
readline-devel \
|
||||
rng-tools \
|
||||
rpcgen \
|
||||
|
@ -68,9 +68,11 @@ packages:
|
||||
- python2-semanage
|
||||
- python3
|
||||
- python3-Markdown
|
||||
- python3-cryptography
|
||||
- python3-devel
|
||||
- python3-dnspython
|
||||
- python3-gpg
|
||||
- python3-pyasn1
|
||||
- readline-devel
|
||||
- rng-tools
|
||||
- rpcgen
|
||||
|
@ -80,6 +80,7 @@ apt-get -y install \
|
||||
procps \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-dbg \
|
||||
python3-dev \
|
||||
python3-dnspython \
|
||||
@ -88,6 +89,7 @@ apt-get -y install \
|
||||
python3-markdown \
|
||||
python3-matplotlib \
|
||||
python3-pexpect \
|
||||
python3-pyasn1 \
|
||||
rng-tools \
|
||||
rsync \
|
||||
sed \
|
||||
|
@ -69,6 +69,7 @@ packages:
|
||||
- procps
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-dbg
|
||||
- python3-dev
|
||||
- python3-dnspython
|
||||
@ -77,6 +78,7 @@ packages:
|
||||
- python3-markdown
|
||||
- python3-matplotlib
|
||||
- python3-pexpect
|
||||
- python3-pyasn1
|
||||
- rng-tools
|
||||
- rsync
|
||||
- sed
|
||||
|
@ -82,6 +82,7 @@ apt-get -y install \
|
||||
procps \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-dbg \
|
||||
python3-dev \
|
||||
python3-dnspython \
|
||||
@ -90,6 +91,7 @@ apt-get -y install \
|
||||
python3-markdown \
|
||||
python3-matplotlib \
|
||||
python3-pexpect \
|
||||
python3-pyasn1 \
|
||||
rng-tools \
|
||||
rsync \
|
||||
sed \
|
||||
|
@ -71,6 +71,7 @@ packages:
|
||||
- procps
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-dbg
|
||||
- python3-dev
|
||||
- python3-dnspython
|
||||
@ -79,6 +80,7 @@ packages:
|
||||
- python3-markdown
|
||||
- python3-matplotlib
|
||||
- python3-pexpect
|
||||
- python3-pyasn1
|
||||
- rng-tools
|
||||
- rsync
|
||||
- sed
|
||||
|
@ -82,6 +82,7 @@ apt-get -y install \
|
||||
procps \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-cryptography \
|
||||
python3-dbg \
|
||||
python3-dev \
|
||||
python3-dnspython \
|
||||
@ -90,6 +91,7 @@ apt-get -y install \
|
||||
python3-markdown \
|
||||
python3-matplotlib \
|
||||
python3-pexpect \
|
||||
python3-pyasn1 \
|
||||
rng-tools \
|
||||
rsync \
|
||||
sed \
|
||||
|
@ -71,6 +71,7 @@ packages:
|
||||
- procps
|
||||
- psmisc
|
||||
- python3
|
||||
- python3-cryptography
|
||||
- python3-dbg
|
||||
- python3-dev
|
||||
- python3-dnspython
|
||||
@ -79,6 +80,7 @@ packages:
|
||||
- python3-markdown
|
||||
- python3-matplotlib
|
||||
- python3-pexpect
|
||||
- python3-pyasn1
|
||||
- rng-tools
|
||||
- rsync
|
||||
- sed
|
||||
|
@ -1 +1 @@
|
||||
f5212e7abcae3208b796c939432ab9bec319264a
|
||||
7414ad7ef9108d406b1f6b17ebce19e32aee9f70
|
||||
|
Loading…
Reference in New Issue
Block a user