Skip to content

Commit 8a3a8ad

Browse files
committed
⚙️ Regenerate Dockerfiles
Signed-off-by: Wesley Schwengle <[email protected]>
1 parent 00029e4 commit 8a3a8ad

File tree

48 files changed

+192
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+192
-96
lines changed

5.038.005-main,threaded-bookworm/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:bookworm
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-main,threaded-bullseye/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:bullseye
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-main,threaded-trixie/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:trixie
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-main-bookworm/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:bookworm
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-main-bullseye/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:bullseye
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-main-trixie/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM buildpack-deps:trixie
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN true \
79
&& curl -fL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.38.5.tar.gz -o perl-5.38.5.tar.gz \
810
&& echo 'b7667d3ff309068852af7853910aaccec26c839d717402121b664ac705e07bfe *perl-5.38.5.tar.gz' | sha256sum --strict --check - \
@@ -14,15 +16,15 @@ RUN true \
1416
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
1517
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Duseshrplib -Dvendorprefix=/usr/local -des \
1618
&& make -j$(nproc) \
17-
&& TEST_JOBS=$(nproc) make test_harness \
19+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
1820
&& make install \
1921
&& cd /usr/src \
2022
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
2123
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
2224
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
2325
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
2426
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
25-
&& perl bin/cpanm . && cd /root \
27+
&& perl bin/cpanm --notest . && cd /root \
2628
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
2729
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
2830
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-slim,threaded-bookworm/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM debian:bookworm-slim
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN apt-get update \
79
&& apt-get install -y --no-install-recommends \
810
bzip2 \
@@ -35,15 +37,15 @@ RUN apt-get update \
3537
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
3638
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
3739
&& make -j$(nproc) \
38-
&& TEST_JOBS=$(nproc) make test_harness \
40+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
3941
&& make install \
4042
&& cd /usr/src \
4143
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
4244
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
4345
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
4446
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
4547
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
46-
&& perl bin/cpanm . && cd /root \
48+
&& perl bin/cpanm --notest . && cd /root \
4749
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
4850
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
4951
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-slim,threaded-bullseye/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM debian:bullseye-slim
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN apt-get update \
79
&& apt-get install -y --no-install-recommends \
810
bzip2 \
@@ -35,15 +37,15 @@ RUN apt-get update \
3537
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
3638
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
3739
&& make -j$(nproc) \
38-
&& TEST_JOBS=$(nproc) make test_harness \
40+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
3941
&& make install \
4042
&& cd /usr/src \
4143
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
4244
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
4345
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
4446
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
4547
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
46-
&& perl bin/cpanm . && cd /root \
48+
&& perl bin/cpanm --notest . && cd /root \
4749
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
4850
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
4951
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-slim,threaded-trixie/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM debian:trixie-slim
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN apt-get update \
79
&& apt-get install -y --no-install-recommends \
810
bzip2 \
@@ -35,15 +37,15 @@ RUN apt-get update \
3537
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
3638
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -des \
3739
&& make -j$(nproc) \
38-
&& TEST_JOBS=$(nproc) make test_harness \
40+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
3941
&& make install \
4042
&& cd /usr/src \
4143
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
4244
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
4345
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
4446
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
4547
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
46-
&& perl bin/cpanm . && cd /root \
48+
&& perl bin/cpanm --notest . && cd /root \
4749
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
4850
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
4951
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

5.038.005-slim-bookworm/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM debian:bookworm-slim
33
# No DevelPatchPerl.patch generated
44
WORKDIR /usr/src/perl
55

6+
ARG TARGETARCH
7+
68
RUN apt-get update \
79
&& apt-get install -y --no-install-recommends \
810
bzip2 \
@@ -35,15 +37,15 @@ RUN apt-get update \
3537
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
3638
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Duseshrplib -Dvendorprefix=/usr/local -des \
3739
&& make -j$(nproc) \
38-
&& TEST_JOBS=$(nproc) make test_harness \
40+
&& { [ "${TARGETARCH}" = 'riscv64' ] || TEST_JOBS=$(nproc) make test_harness; } \
3941
&& make install \
4042
&& cd /usr/src \
4143
&& curl -fLO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7047.tar.gz \
4244
&& echo '963e63c6e1a8725ff2f624e9086396ae150db51dd0a337c3781d09a994af05a5 *App-cpanminus-1.7047.tar.gz' | sha256sum --strict --check - \
4345
&& tar -xzf App-cpanminus-1.7047.tar.gz && cd App-cpanminus-1.7047 \
4446
&& perl -pi -E 's{http://(www\.cpan\.org|backpan\.perl\.org|cpan\.metacpan\.org|fastapi\.metacpan\.org|cpanmetadb\.plackperl\.org)}{https://$1}g' bin/cpanm \
4547
&& perl -pi -E 's{try_lwp=>1}{try_lwp=>0}g' bin/cpanm \
46-
&& perl bin/cpanm . && cd /root \
48+
&& perl bin/cpanm --notest . && cd /root \
4749
&& curl -fLO 'https://www.cpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.94.tar.gz' \
4850
&& echo '9d7be8a56d1bedda05c425306cc504ba134307e0c09bda4a788c98744ebcd95d *Net-SSLeay-1.94.tar.gz' | sha256sum --strict --check - \
4951
&& cpanm --notest --from $PWD Net-SSLeay-1.94.tar.gz \

0 commit comments

Comments
 (0)