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

Builder doxygen-solaris10-sparc Build #3007

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revisiona21c4ccbcc8799027d5592a6b3c1aa94c42563e9
Got Revisiona21c4ccbcc8799027d5592a6b3c1aa94c42563e9
Changes8 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 16 secs )
    1. stdio
  2. MakeDirectory Created ( 0 secs )
    1. - no logs -
  3. shell 'cmake -G ...' failed ( 18 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 3007 Build
codebase Build
got_revision a21c4ccbcc8799027d5592a6b3c1aa94c42563e9 Git
project doxygen Build
repository https://github.com/doxygen/doxygen.git Build
revision a21c4ccbcc8799027d5592a6b3c1aa94c42563e9 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. albert-github

Timing:

StartThu Apr 11 19:53:08 2024
EndThu Apr 11 19:53:45 2024
Elapsed36 secs

All Changes:

:

  1. Change #195092

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 10:49:57
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 2a7e195933d19c0be78d173b1d4f44b22f29cfc0

    Comments

    issue #10790 Failed to build "master" branch
    Regression:
    ```
    Commit: aa55cc88df4d63425946725357b4b93e0aafedbf [aa55cc8]
    
    Commit Date: Wednesday, April 10, 2024 10:01:12 PM
    
    Refactoring: Added ENABLE_CLANG_TIDY option and added rule of 0 or rule of 5 special members
    ```
    
    as the translator report generation method did not take ABSTRACT_BASE_CLASS define into account

    Changed files

    • doc/translator.py
  2. Change #195093

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 11:10:31
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 47a969a6d67caba593b8ca33151598227e9baa06

    Comments

    Guarantee unsigned 32-bit word for  md5 calculation
    It is not guaranteed that `unsigned int` is 32-bit (according to the standard, though normally it is).
    We now guarantee that it is 32-bit

    Changed files

    • deps/libmd5/md5_loc.h
  3. Change #195094

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 13:01:57
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 9cd7adab3a6b57cac86f8e8959122b56420dc775

    Comments

    Debugging of tests
    Adding the option `--doxygen_dbg` to the test flags so it is easier to run standard doxygen debug on test like `TEST_FLAGS="--doxygen_dbg -d preprocessor`

    Changed files

    • testing/runtests.py
  4. Change #195095

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 17:32:03
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision fa30e8eb611b0dcb6e9d00165afb4f0055be1e51

    Comments

    Delay removing files in case of RTF till end of process
    In case we include a file by means of a `\rtfonly` section like:
    ```
    \rtfonly
    \par \pard\plain
    {\field\fldedit{\*\fldinst INCLUDETEXT "inc_aa.rtf" \\*MERGEFORMAT}{\fldrslt includedstuff}}
    \endrtfonly
    ```
    or
    ```
    \rtfonly
    \par \pard\plain
    {\field\fldedit{\*\fldinst INCLUDETEXT "../inc_aa1.rtf" \\*MERGEFORMAT}{\fldrslt includedstuff}}
    \endrtfonly
    ```
    
    we get errors when a file is included multiple times or for the relative link on the second invocation as the files are removed directly after been included.
    This is not desirable.
    - remove files just at the end of the merging process
    - only remove files in the `RTF_OUTPUT` directory (this will contain only "generated / copied" files)
    - create possibility to have "RTF_EXTRA_FILES` analogous to the HTML and LATEX counterparts.

    Changed files

    • src/config.xml
    • src/doxygen.cpp
    • src/rtfgen.cpp
  5. Change #195096

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 19:48:34
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision d496bbd21fa5b034442118754b5007234b6a2de0

    Comments

    Merge pull request #10791 from albert-github/feature/issue_10790
    issue #10790 Failed to build "master" branch

    Changed files

    • no files
  6. Change #195097

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 19:48:54
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision ac7470811fe96d5c7040abffe190843061c28fc3

    Comments

    Merge pull request #10792 from albert-github/feature/bug_md5_uint_32
    Guarantee unsigned 32-bit word for  md5 calculation

    Changed files

    • no files
  7. Change #195098

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 19:49:22
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 854d06b88152ba4bc19df10e4e404bc09c7241c5

    Comments

    Merge pull request #10793 from albert-github/feature/bug_test_doxygen_debug
    Debugging of tests

    Changed files

    • no files
  8. Change #195099

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Thu 11 Apr 2024 19:51:07
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision a21c4ccbcc8799027d5592a6b3c1aa94c42563e9

    Comments

    Merge pull request #10794 from albert-github/feature/bug_rtf_extra
    Delay removing files in case of RTF till end of process

    Changed files

    • no files