Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder collectd-60-solaris10-sparc Build #40

Results:

Build successful

SourceStamp:

Projectcollectd/collectd
Repositoryhttps://github.com/collectd/collectd
Branchcollectd-6.0
Revision7fa95845f8ff054adb0c98fac776f0e088a5acda
Got Revision7fa95845f8ff054adb0c98fac776f0e088a5acda
Changes2 changes

BuildSlave:

unstable10s

Reason:

The AnyBranchScheduler scheduler named 'schedule-collectd-60' triggered this build

Steps and Logfiles:

  1. git update ( 15 secs )
    1. stdio
  2. setproperty property 'ciflags' set ( 0 secs )
    1. stdio
    2. property changes
  3. shell '/opt/csw/bin/bash ./build.sh' ( 7 mins, 3 secs )
    1. stdio
  4. shell_1 './configure --prefix=/opt/csw ...' ( 3 mins, 34 secs )
    1. stdio
    2. config.log
  5. shell_2 'gmake -k ...' ( 10 mins, 34 secs )
    1. stdio
  6. shell_3 'gmake check' ( 1 mins, 39 secs )
    1. stdio
    2. test-suite.log

Build Properties:

NameValueSource
branch collectd-6.0 Build
builddir /export/home/buildbot-unstable10s/slave/collectd-60-solaris10-sparc slave
buildername collectd-60-solaris10-sparc Builder
buildnumber 40 Build
ciflags --disable-aggregation --disable-check_uptime --disable-csv --disable-java --disable-lua --disable-match_empty_counter --disable-match_hashed --disable-match_regex --disable-match_timediff --disable-match_value --disable-network --disable-perl --disable-postgresql --disable-target_notification --disable-target_replace --disable-target_scale --disable-target_set --disable-target_v5upgrade --disable-threshold --disable-write_graphite --disable-write_kafka --disable-write_mongodb --disable-write_pro .. [property value too long] SetPropertyFromCommand Step
codebase Build
got_revision 7fa95845f8ff054adb0c98fac776f0e088a5acda Git
project collectd/collectd Build
repository https://github.com/collectd/collectd Build
revision 7fa95845f8ff054adb0c98fac776f0e088a5acda Build
scheduler schedule-collectd-60 Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/collectd-60-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Leonard Göhrs

Timing:

StartSun Apr 23 15:01:52 2023
EndSun Apr 23 15:25:00 2023
Elapsed23 mins, 7 secs

All Changes:

:

  1. Change #172593

    Category None
    Changed by Leonard Göhrs <l.goehrsohnoyoudont@pengutronix.de>
    Changed at Sun 23 Apr 2023 15:00:45
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision dd56979737ced21853c32d7d4592fab5184d36f5

    Comments

    [collectd 6] exec: add PUTMETRIC command
    
    Most existing setups using exec will use PUTVAL, which should just continue
    to work with collectd 6 due to the plugin_dispatch_values compatibility
    function.
    New plugins should however use the new PUTMETRIC.
    The respective command handler already exists. This commit just pipes it
    through.
    
    Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>

    Changed files

    • src/exec.c
  2. Change #172594

    Category None
    Changed by Leonard Göhrs <l.goehrsohnoyoudont@pengutronix.de>
    Changed at Sun 23 Apr 2023 15:00:45
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision 7fa95845f8ff054adb0c98fac776f0e088a5acda

    Comments

    [collectd 6] exec: make PUTMETRIC work
    
    The cmd_handle_putmetric function checks if the command actually is
    a PUTMETRIC command, at least that is what is supposed to check.
    Prior to this fix it actually checked for PUTVAL and always prints a
    
        -1 Unexpected command: `PUTMETRIC'.
    
    error. While at it also remove the development printf that results in
    
        set_option("type", "GAUGE")
        set_option("type", "Counter")
        …
    
    being printed during normal operation.
    
    Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>

    Changed files

    • src/utils/cmds/putmetric.c