diff --git a/dev/tools/cpan_random_tester.pl b/dev/tools/cpan_random_tester.pl index fb93eb12f..c50dc8331 100644 --- a/dev/tools/cpan_random_tester.pl +++ b/dev/tools/cpan_random_tester.pl @@ -57,6 +57,7 @@ my $fail_dat = File::Spec->catfile($report_dir, 'cpan-compatibility-fail.dat'); my $skip_dat = File::Spec->catfile($report_dir, 'cpan-compatibility-skip.dat'); my $log_dir = '/tmp/cpan_random_logs'; +my $KILL_AFTER = 10; # seconds between SIGTERM and SIGKILL (used by run_with_timeout) # CPAN package index my $packages_gz = glob('~/.cpan/sources/modules/02packages.details.txt.gz'); @@ -499,7 +500,6 @@ sub parse_all_module_results { # `timeout.exe` there is a sleep-with-countdown, NOT GNU coreutils. # 2. Fallback: fork + setpgrp + kill(-$pid) for platforms without # coreutils (and for Windows, where it degrades to a plain alarm). -my $KILL_AFTER = 10; # seconds between SIGTERM and SIGKILL sub run_with_timeout { my ($cmd, $secs) = @_; diff --git a/src/main/java/org/perlonjava/core/Configuration.java b/src/main/java/org/perlonjava/core/Configuration.java index 7006b264d..e2c37dcd7 100644 --- a/src/main/java/org/perlonjava/core/Configuration.java +++ b/src/main/java/org/perlonjava/core/Configuration.java @@ -33,7 +33,7 @@ public final class Configuration { * Automatically populated by Gradle/Maven during build. * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String gitCommitId = "cbde1aacd"; + public static final String gitCommitId = "44f0a7e9f"; /** * Git commit date of the build (ISO format: YYYY-MM-DD). @@ -48,7 +48,7 @@ public final class Configuration { * Parsed by App::perlbrew and other tools via: perl -V | grep "Compiled at" * DO NOT EDIT MANUALLY - this value is replaced at build time. */ - public static final String buildTimestamp = "Apr 27 2026 16:05:36"; + public static final String buildTimestamp = "Apr 27 2026 16:10:12"; // Prevent instantiation private Configuration() {