Skip to content

Commit 3ea8171

Browse files
committed
Don't run tests with cpanm installs for the image
cpanm runs tests for everything it installs, which might be a good thing or a bad thing. It depends mostly on flavor. cpm will install modules without running tests by default for example. This commits still uses cpanm, but with the --notest flag so we can improve on our build times. Closes: #195 Signed-off-by: Wesley Schwengle <[email protected]>
1 parent 9a59337 commit 3ea8171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ =head1 DESCRIPTION
338338
&& tar -xzf {{cpanm_dist_name}}.tar.gz && cd {{cpanm_dist_name}} \
339339
&& {{cpanm_dist_patch_https}} \
340340
&& {{cpanm_dist_patch_nolwp}} \
341-
&& perl bin/cpanm . && cd /root \
341+
&& perl bin/cpanm --notest . && cd /root \
342342
&& curl -fLO '{{netssleay_dist_url}}' \
343343
&& echo '{{netssleay_dist_sha256}} *{{netssleay_dist_name}}.tar.gz' | sha256sum --strict --check - \
344344
&& cpanm --notest --from $PWD {{netssleay_dist_name}}.tar.gz \

0 commit comments

Comments
 (0)