Skip to content

Commit 2a51624

Browse files
committed
[CI][docs] Don't upload intermediate graph files to the webpage.
Doxygen creates .map and .md5 files to create dot graphs that get embedded in the webpage. Those intermediate files don't need to be transferred to the webpage.
1 parent ef9ae54 commit 2a51624

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/root-docs-ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,14 +195,12 @@ jobs:
195195
echo ${RWEBEOS_KT} | base64 -d > ${KT_FILE_NAME}
196196
kinit -p ${{ secrets.KRB5USER }}@${{ secrets.KRB5REALM }} -kt ${KT_FILE_NAME}
197197
cd ${DOC_DIR}/html/
198+
rm -rf *.map # Intermediate files to create dot graphs
199+
rm -rf *.md5 # As above
198200
xrdcp --parallel 64 -rf ./*.html ${EOS_ENDPOINT}/${EOS_BASE_PATH}/doc/${WEB_DIR_NAME} || failure=1
199201
rm -rf *.html
200202
xrdcp --parallel 64 -rf ./*.svg ${EOS_ENDPOINT}/${EOS_BASE_PATH}/doc/${WEB_DIR_NAME} || failure=1
201203
rm -rf *.svg
202-
xrdcp --parallel 64 -rf ./*.map ${EOS_ENDPOINT}/${EOS_BASE_PATH}/doc/${WEB_DIR_NAME} || failure=1
203-
rm -rf *.map
204-
xrdcp --parallel 64 -rf ./*.md5 ${EOS_ENDPOINT}/${EOS_BASE_PATH}/doc/${WEB_DIR_NAME} || failure=1
205-
rm -rf *.md5
206204
xrdcp --parallel 64 -rf ./ ${EOS_ENDPOINT}/${EOS_BASE_PATH}/doc/${WEB_DIR_NAME} || failure=1
207205
cd ..
208206
rm -r html

0 commit comments

Comments
 (0)