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

Builder doxygen-solaris10-sparc Build #3814

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revision09727101e6bab6d513fb74252e6b13f6af83bb7a
Got Revision09727101e6bab6d513fb74252e6b13f6af83bb7a
Changes4 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-doxygen-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 23 secs )
    1. stdio
  2. MakeDirectory Created ( 0 secs )
    1. - no logs -
  3. shell 'cmake -G ...' failed ( 13 secs )
    1. stdio
    2. CMakeOutput.log
    3. CMakeError.log
  4. shell_1 'gmake' failed ( 0 secs )
    1. stdio
  5. shell_2 'gmake tests' failed ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc slave
buildername doxygen-solaris10-sparc Builder
buildnumber 3814 Build
codebase Build
got_revision 09727101e6bab6d513fb74252e6b13f6af83bb7a Git
project doxygen Build
repository https://github.com/doxygen/doxygen.git Build
revision 09727101e6bab6d513fb74252e6b13f6af83bb7a Build
scheduler schedule-doxygen-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dimitri van Heesch
  2. James Cowgill
  3. albert-github

Timing:

StartSat May 9 20:22:37 2026
EndSat May 9 20:23:15 2026
Elapsed37 secs

All Changes:

:

  1. Change #266642

    Category doxygen
    Changed by James Cowgill <jcowgillohnoyoudont@debian.org>
    Changed at Fri 08 May 2026 12:23:28
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 87d10352d53cd89461e796cd53ba615db1e0b45c

    Comments

    Fix nondeterministic input ordering of duplicate basenames
    inputNameLinkedMap is a LinkedMap containing list of file definitions
    indexed by their basenames. The first time we encounter a basename, we
    create a new list and store the path to that file in fullName, and
    fullName is not updated again. The problem is this path depends on
    filesystem ordering (we use the path we happen to hit first).
    
    Later on we sort the inputs list using fullName but since fullName
    itself is nondeterministic this doesn't always produce the same
    result.
    
    Fix this by sorting each basename list first, then sorting using the
    path of the first file in each list. Afterwards, remove
    FileName::fullName and FileName::path which are no longer used
    anywhere.

    Changed files

    • src/doxygen.cpp
    • src/filename.h
    • src/tagreader.cpp
  2. Change #266643

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Fri 08 May 2026 15:32:01
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision d2d36e54dba2f3a5d567a5a5c9aa2637f82d4c2c

    Comments

    Adding language selection for doxywizard on command line
    - add the possibility to select the language for the doxywizard from the command line
    - as a consequence reorganize options of doxywizard

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
  3. Change #266644

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Sat 09 May 2026 20:12:41
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 1b6a75c5504267b8b68234ecd9aae521d261752b

    Comments

    Merge pull request #12133 from albert-github/feature/bug_doxywizard_language
    Adding language selection for doxywizard on command line

    Changed files

    • no files
  4. Change #266645

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Sat 09 May 2026 20:13:23
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 09727101e6bab6d513fb74252e6b13f6af83bb7a

    Comments

    Merge pull request #12132 from jcowgill/nondeterministic-file-ordering
    Fix nondeterministic input ordering of duplicate basenames

    Changed files

    • no files