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

Builder collectd-60-solaris10-sparc Build #76

Results:

Build successful

SourceStamp:

Projectcollectd/collectd
Repositoryhttps://github.com/collectd/collectd
Branchcollectd-6.0
Revisionf6036685694b23032f53be8a37d26c7b33e670b3
Got Revisionf6036685694b23032f53be8a37d26c7b33e670b3
Changes1 change

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 26 secs )
    1. stdio
  2. setproperty property 'ciflags' set ( 0 secs )
    1. stdio
    2. property changes
  3. shell '/opt/csw/bin/bash ./build.sh' ( 6 mins, 23 secs )
    1. stdio
  4. shell_1 './configure --prefix=/opt/csw ...' ( 3 mins, 59 secs )
    1. stdio
    2. config.log
  5. shell_2 'gmake -k ...' ( 11 mins, 17 secs )
    1. stdio
  6. shell_3 'gmake check' ( 2 mins, 5 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 76 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 f6036685694b23032f53be8a37d26c7b33e670b3 Git
project collectd/collectd Build
repository https://github.com/collectd/collectd Build
revision f6036685694b23032f53be8a37d26c7b33e670b3 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. Florian Forster

Timing:

StartMon Jan 15 15:12:15 2024
EndMon Jan 15 15:36:28 2024
Elapsed24 mins, 13 secs

All Changes:

:

  1. Change #188711

    Category None
    Changed by Florian Forster <octoohnoyoudont@collectd.org>
    Changed at Mon 15 Jan 2024 14:58:23
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision f6036685694b23032f53be8a37d26c7b33e670b3

    Comments

    write_riemann plugin: Terminate `riemann_event_set` arguments with `RIEMANN_EVENT_FIELD_NONE`.
    
    `riemann_event_set` is a variadic function, that means it accepts a variable
    number of arguments. That means it needs some way to determine – at runtime
    – how many arguments there are. It appears to be doing so by using
    `RIEMANN_EVENT_FIELD_NONE` to indicate the last element in the argument
    list. Unfortunately I was unable to find the library's documentation and
    code and could not verify this.
    
    That means that the argument list passed to `riemann_event_set` was not
    always terminated, causing it to read past where it was supposed to and
    adding random crap into the message it crafted.
    
    Issue: #4050

    Changed files

    • src/write_riemann.c