An example failure can be seen at https://ci.lsst.codes/job/release/job/run-rebuild/434/consoleFull#console-section-3
The relevant error seems to be:
cp: cannot stat ‘html’: No such file or directory
|
*** Failed to copy doxygen documentation
|
The create_xlinkdocs.sh script effectively does:
makeDocs --nodot datarel "$DATAREL_VERSION" > MakeDocs.out
|
doxygen MakeDocs.out
|
cp -ar html "$DOC_INSTALL_DIR"
|
and it is complaining here that the html directory can not be found despite doxygen running without errors. I have looked at my changes from DM-9458 and none of my changes affect the HTML output. Furthermore, the makeDocs default output directory for HTML has been ./doc/html since 2011 and this has not changed (and the script does not override the default). I am therefore confused as to how this ever worked because the script that is failing seems to be assuming the output is in ./html.
Joshua Hoblitt did something else change on Monday?
An example failure can be seen at https://ci.lsst.codes/job/release/job/run-rebuild/434/consoleFull#console-section-3
The relevant error seems to be:
cp: cannot stat ‘html’: No such file or directory
*** Failed to copy doxygen documentation
The create_xlinkdocs.sh script effectively does:
makeDocs --nodot datarel "$DATAREL_VERSION" > MakeDocs.out
doxygen MakeDocs.out
cp -ar html "$DOC_INSTALL_DIR"
and it is complaining here that the html directory can not be found despite doxygen running without errors. I have looked at my changes from
DM-9458and none of my changes affect the HTML output. Furthermore, the makeDocs default output directory for HTML has been ./doc/html since 2011 and this has not changed (and the script does not override the default). I am therefore confused as to how this ever worked because the script that is failing seems to be assuming the output is in ./html.Joshua Hoblitt did something else change on Monday?