mirror of
https://github.com/goreleaser/nfpm
synced 2025-04-05 13:49:07 +02:00
* test: test centos10, fedora 40+ Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * chore: typos * fix: typo --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
21 lines
626 B
Docker
21 lines
626 B
Docker
FROM fedora:40 AS test_base
|
|
RUN yum install -y createrepo yum-utils
|
|
ARG package
|
|
RUN echo "${package}"
|
|
COPY ${package} /tmp/foo.rpm
|
|
|
|
FROM test_base AS signed
|
|
COPY keys/pubkey.asc /tmp/pubkey.asc
|
|
RUN rpm --import /tmp/pubkey.asc
|
|
RUN rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\t%{SUMMARY}\n'
|
|
RUN rpm -vK /tmp/foo.rpm
|
|
RUN rpm -vK /tmp/foo.rpm | grep "RSA/SHA256 Signature, key ID 15bd80b3: OK"
|
|
RUN rpm -K /tmp/foo.rpm
|
|
RUN rpm -K /tmp/foo.rpm | grep -E "(?:pgp|digests signatures) OK"
|
|
|
|
RUN rm -rf /etc/yum.repos.d/*.repo
|
|
COPY keys/test.rpm.repo /etc/yum.repos.d/test.rpm.repo
|
|
RUN createrepo /tmp
|
|
RUN yum install -y foo
|
|
|