eval { local $SIG{'ALRM'} = { die("Timeout\n"); }; alarm(60); system('build.sh'); alarm(0); }; if ($@ =~ /^Timeout/) { die("Build timed out\n"); }