Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/tools/cpan_random_tester.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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) = @_;

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/perlonjava/core/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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() {
Expand Down
Loading