We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b80d31 commit afe9471Copy full SHA for afe9471
1 file changed
Jenkinsfile
@@ -62,7 +62,17 @@ pipeline {
62
steps {
63
dir("${REPO}") {
64
xcoreAllAppsBuild('examples')
65
- xcoreAllAppNotesBuild('examples')
+ /* App note AN00231 contains a list-table (LED Indicator meaning)
66
+ * which xdoc fails to handle correctly when producing HTML output.
67
+ * Therefore xcoreAllAppNotesBuild('examples') cannot be used for the
68
+ * time being, and xdoc must be called explicitly to only build PDFs.
69
+ */
70
+ dir('examples/AN00231_ASRC_SPDIF_TO_DAC/doc') {
71
+ viewEnv() {
72
+ sh 'xdoc xmospdf'
73
+ }
74
75
+ //list-table:: LED Indicator meaning
76
77
runXdoc('doc')
78
}
0 commit comments