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

Builder collectd-60-solaris10-sparc Build #73

Results:

Build successful

SourceStamp:

Projectcollectd/collectd
Repositoryhttps://github.com/collectd/collectd
Branchcollectd-6.0
Revision29935ebd2987d75840a73db037aa7e5c24fad9ef
Got Revision29935ebd2987d75840a73db037aa7e5c24fad9ef
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 35 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, 21 secs )
    1. stdio
    2. config.log
  5. shell_2 'gmake -k ...' ( 10 mins, 4 secs )
    1. stdio
  6. shell_3 'gmake check' ( 1 mins, 49 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 73 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 29935ebd2987d75840a73db037aa7e5c24fad9ef Git
project collectd/collectd Build
repository https://github.com/collectd/collectd Build
revision 29935ebd2987d75840a73db037aa7e5c24fad9ef 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
  2. Kentaro Hayashi

Timing:

StartSat Jan 13 10:10:32 2024
EndSat Jan 13 10:32:48 2024
Elapsed22 mins, 16 secs

All Changes:

:

  1. Change #188536

    Category None
    Changed by Kentaro Hayashi <kenhysohnoyoudont@gmail.com>
    Changed at Sat 13 Jan 2024 06:39:49
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision e6be1e4709aee7f87cf9e8fd82a8021f3acce25d

    Comments

    lua: enable Lua
    
    Signed-off-by: Kentaro Hayashi <kenhys@gmail.com>

    Changed files

    • configure.ac
  2. Change #188537

    Category None
    Changed by Kentaro Hayashi <kenhysohnoyoudont@gmail.com>
    Changed at Sat 13 Jan 2024 06:39:49
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision e116230499c698240b4ddf9554ab874cab6c876f

    Comments

    lua: migrate interface to v6 plugin API
    
    Since v6, value_list_t is deprecated and metric_family_t is
    introduced.
    
    metric_family_t is mapped to the following Lua table:
    
      {
        name => ...,
        help => ...,
        unit => ...,
        type => ...,
        resource => {
          key1 => value1,
          ...,
          keyN => valueN
        }
        metric => {
         [1] => {
           label => {
             key1 => value1,
             ...,
             keyN => valueN
           }
           value => ...,
           time => ...,
           interval => ...,
           meta => {
             key1 => value1,
             ...,
             keyN => valueN
           }
         },
         ...
         [N] => {
           ...
         }
      }
    
    Closes: #3654
    
    Signed-off-by: Kentaro Hayashi <kenhys@gmail.com>

    Changed files

    • src/lua.c
    • src/utils_lua.c
    • src/utils_lua.h
  3. Change #188538

    Category None
    Changed by Kentaro Hayashi <kenhysohnoyoudont@gmail.com>
    Changed at Sat 13 Jan 2024 09:00:56
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision 67c3aa5e681297ed555b73a182c455bd90ec5110

    Comments

    lua: update data types section
    
    It describes changes about internal data type.
    
    Signed-off-by: Kentaro Hayashi <kenhys@gmail.com>

    Changed files

    • src/collectd-lua.pod
  4. Change #188539

    Category None
    Changed by Florian Forster <octoohnoyoudont@collectd.org>
    Changed at Sat 13 Jan 2024 10:09:24
    Repository https://github.com/collectd/collectd
    Project collectd/collectd
    Branch collectd-6.0
    Revision 29935ebd2987d75840a73db037aa7e5c24fad9ef

    Comments

    Merge pull request #3795 from kenhys/v6-lua
    
    [collectd 6] lua: migrate the Lua plugin to v6.0

    Changed files

    • configure.ac
    • src/collectd-lua.pod
    • src/lua.c
    • src/utils_lua.c
    • src/utils_lua.h