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