|
31 | 31 | my $debug; |
32 | 32 | my $local_test_only; |
33 | 33 | my $skip_ci_test; |
| 34 | +my $skip_pps_test; |
34 | 35 | GetOptions( |
35 | 36 | 'debug' => \$debug, |
36 | 37 | 'n|dry-run' => \$dry_run, |
37 | 38 | 'local-test-only' => \$local_test_only, |
38 | 39 | 'skip-ci-test' => \$skip_ci_test, |
| 40 | + 'skip-pps-test' => \$skip_pps_test, |
39 | 41 | ) |
40 | | - or die "usage: $0 [--dry-run] [--debug] [--skip-ci-test | --local-test-only]\n"; |
| 42 | + or die "usage: $0 [--dry-run] [--debug] [--skip-ci-test | --local-test-only] [--skip-pps-test]\n"; |
41 | 43 |
|
42 | 44 | local $ENV{LC_ALL} = $ENV{LANG} = 'C'; |
43 | 45 |
|
|
70 | 72 | check_ci 'eserte/cpan-testers-matrix'; |
71 | 73 | }; |
72 | 74 | } |
73 | | -step "update-pps", sub { |
74 | | - successful_system 'make', 'update-pps-jessie'; |
75 | | -}; |
76 | | -manual_check_step "pps tests", "Please go to http://matrix.bbbike-pps-jessie and do some manual tests."; |
77 | | -confirmed_step "update-live-beta", sub { |
78 | | - successful_system 'make', 'update-live-beta'; |
79 | | -}; |
| 75 | +unless ($skip_pps_test) { |
| 76 | + step "update-pps", sub { |
| 77 | + successful_system 'make', 'update-pps-jessie'; |
| 78 | + }; |
| 79 | + manual_check_step "pps tests", "Please go to http://matrix.bbbike-pps-jessie and do some manual tests."; |
| 80 | + confirmed_step "update-live-beta", sub { |
| 81 | + successful_system 'make', 'update-live-beta'; |
| 82 | + }; |
| 83 | +} |
80 | 84 | manual_check_step "beta tests", "Please go to http://beta-matrix.cpantesters.org and do some manual tests."; |
81 | 85 | confirmed_step "update-live-stable", sub { |
82 | 86 | successful_system 'make', 'update-live-stable'; |
|
0 commit comments