Changeset 2279 in ProjectBuilder for devel/pb/bin/pb


Ignore:
Timestamp:
Aug 30, 2017, 5:08:03 PM (7 years ago)
Author:
Bruno Cornec
Message:

YAML support working for most distros

  • Fix rebase issues
  • Adds a pbsyncheck script for pre-commit check
  • Fix test deps for centos & fedora
  • update pbcl versions for deb build
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/bin/pb

    r2271 r2279  
    863863    if ($@) {
    864864        # Sys::CPU not found, defaulting to 1
    865         pb_log(1,"ADVISE: Install Sys::CPU to benefit from automatic parallelism optimization.\nOr use pbparallel in your pb.conf file\nOnly 1 process at a time for the moment\n");
     865        pb_log(1,"ADVISE: Install Sys::CPU to benefit from automatic parallelism optimization.\nOr use pbparallel in your pb.yml file\nOnly 1 process at a time for the moment\n");
    866866        $pbparallel = 1;
    867867    } else {
     
    49744974    if ($@) {
    49754975        # Linux::SysInfo not found
    4976         pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.conf file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
     4976        pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.yml file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
    49774977    } else {
    49784978        # Using the memory size
    49794979        my $si = Linux::SysInfo::sysinfo();
    49804980        if (not defined $si) {
    4981             pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.conf file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
     4981            pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.yml file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
    49824982        } else {
    49834983            # Keep the number of VM whose memory can be allocated
Note: See TracChangeset for help on using the changeset viewer.