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

Builder doxygen-solaris10-i386 Build #3044

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revision25644ec4666482e2d81e4a675f861c43f85d91a7
Got Revision25644ec4666482e2d81e4a675f861c43f85d91a7
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 1 secs )
    1. stdio
  2. MakeDirectory Created ( 0 secs )
    1. - no logs -
  3. shell 'cmake -G ...' failed ( 2 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/slave/doxygen-solaris10-i386 slave
buildername doxygen-solaris10-i386 Builder
buildnumber 3044 Build
codebase Build
got_revision 25644ec4666482e2d81e4a675f861c43f85d91a7 Git
project doxygen Build
repository https://github.com/doxygen/doxygen.git Build
revision 25644ec4666482e2d81e4a675f861c43f85d91a7 Build
scheduler schedule-doxygen-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/doxygen-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dimitri van Heesch
  2. albert-github

Timing:

StartSun Apr 28 11:12:48 2024
EndSun Apr 28 11:12:53 2024
Elapsed4 secs

All Changes:

:

  1. Change #196113

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Thu 25 Apr 2024 11:43:58
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 52c75469cf914b8f729abb8b1488d3b741c56748

    Comments

    issue #10820 Snippet in same file to share docs
    When having e.g.:
    ```
    ## \file
    
    # [common_param_a]
    #  @param a This is a common parameter that appears in many functions.
    # [common_param_a]
    
    ## @brief This is a function.
    #
    # @snippetdoc example.py common_param_a
    # @param b This is another parameter.
    def function1(a, b):
        pass
    ```
    or analogous in Fortran:
    ```
    !> \file
    
    ! [ftn_common_param_a]
    !  @param a This is a common parameter that appears in many functions.
    ! [ftn_common_param_a]
    
    !> @brief This is a function.
    !>
    !> @snippetdoc this ftn_common_param_a
    !> @param b This is another parameter.
    subroutine ftn_function1(a, b)
        INTEGER a
        INTEGER b
    end subroutine
    ```
    we get warnings like:
    ```
    example.py:4: warning: '\param' command is not allowed in section title, ending section title.
    ```
    and in Fortran the `!` appears in the output
    
    Whilst in C++ the analogous example:
    ```
    /// \file
    
    /** @brief This is a function.
     *  @snippet{doc} this cpp2_common_param_a
     *  @param b This is another parameter. */
    void cpp2_function1(int a, int b){}
    
    /*  [cpp2_common_param_a]
     *  @param a This is a common parameter that appears in many functions.
     *  [cpp2_common_param_a]
    */
    ```
    works OK, due to the rule
    ```
    <DocBlock>"\\ilinebr "{B}*"*"/[^/]      {
                                              QCString indent;
                                              indent.fill(' ',computeIndent(yytext+8,yyextra->column));
                                              yyextra->docBlock << "\\ilinebr " << indent;
                                            }
    ```
    added analogous rules for python and Fortran.

    Changed files

    • src/fortranscanner.l
    • src/pyscanner.l
  2. Change #196114

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Sun 28 Apr 2024 11:11:05
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 25644ec4666482e2d81e4a675f861c43f85d91a7

    Comments

    Merge pull request #10826 from albert-github/feature/issue_10820
    issue #10820 Snippet in same file to share docs

    Changed files

    • no files