Skip to content

Commit 09e5d3b

Browse files
committed
Added SHA-1 checking for 5.20.1, unthreaded
1 parent fafc19d commit 09e5d3b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

5.020.001-64bit/Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ MAINTAINER Peter Martini <[email protected]>
33

44
RUN apt-get update && apt-get install -y curl procps
55

6-
RUN mkdir /usr/src/perl
7-
WORKDIR /usr/src/perl
8-
RUN curl -SL http://www.cpan.org/src/5.0/perl-5.20.1.tar.gz \
9-
| tar -xz --strip-components=1
6+
WORKDIR /tmp
7+
ADD sha1.txt /tmp/sha1.txt
8+
RUN curl -SL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.20.1.tar.bz2 -o /tmp/perl-5.20.1.tar.bz2
9+
RUN sha1sum -c /tmp/sha1.txt
1010

11+
WORKDIR /usr/src/perl
12+
RUN tar --strip-components=1 -xjf /tmp/perl-5.20.1.tar.bz2
13+
RUN rm /tmp/perl-5.20.1.tar.bz2 /tmp/sha1.txt
1114
RUN ./Configure -Duse64bitall -des \
1215
&& make -j$(nproc) \
1316
&& TEST_JOBS=$(nproc) make test_harness \

5.020.001-64bit/sha1.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cd424d1520ba2686fe5d4422565aaf880e9467f6 perl-5.20.1.tar.bz2

0 commit comments

Comments
 (0)