Skip to content

Commit

Permalink
try fix invalid working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
jolly-chen committed Apr 26, 2024
1 parent eb48bec commit e1709c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/root-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
contents: read

container:
image: registry.cern.ch/root-ci/alma9:buildready # ALSO UPDATE BELOW!
image: registry.cern.ch/root-ci/ ${{ env.PLATFORM }}:buildready # ALSO UPDATE BELOW!
options: '--security-opt label=disable --rm' # ALSO UPDATE BELOW!
env:
OS_APPLICATION_CREDENTIAL_ID: '7f5b64a265244623a3a933308569bdba'
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
# The output DOCU_LOCATION set in documentation/doxygen/CMakeLists.txt
- name: Create documentation archives
working-directory: ${DOC_LOCATION}
working-directory: ${{ env.DOC_LOCATION }}
shell: bash
run: |
tarnamegz=${DOC_DIR}.tar.gz
Expand Down
3 changes: 1 addition & 2 deletions documentation/doxygen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define MkDir
+@[ -d $1 ] || mkdir -p $1
endef

all: filter folders mathjax js images doxygen replaceCollaborationDiagrams notebooks rootWork
all: filter folders mathjax js images doxygen replaceCollaborationDiagrams

filter:
`root-config --cxx` -o filter filter.cxx -std=c++14 -O2
Expand Down Expand Up @@ -63,7 +63,6 @@ doxygen: filter pyzdoc
./makehtmlfooter.sh > htmlfooter.html
./makeinput.sh
doxygen
bash ./CleanNamespaces.sh
rm -rf files c1* *.ps *.eps *.png *.jpg *.tex *.svg *.pdf *.root *.xpm *.out *.dat *.dtd *.dot *.txt *.csv *.log *.rs
rm -rf listofclass.sh tmva* data* result* config* test* Roo* My* Freq*
rm -f Doxyfile_INPUT filter htmlfooter.html MDF.C pca.C
Expand Down
2 changes: 1 addition & 1 deletion documentation/doxygen/makeinput.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ echo " ../../core/zip/inc/Compression.h \\" >> Doxyfile_INPUT
# echo " ../../roofit/ \\" >> Doxyfile_INPUT
# echo " ../../tree/ \\" >> Doxyfile_INPUT
# echo " ../../sql/ \\" >> Doxyfile_INPUT
echo " ../../tutorials/ \\" >> Doxyfile_INPUT
# echo " ../../tutorials/ \\" >> Doxyfile_INPUT
# echo " ../../bindings/tpython/ \\" >> Doxyfile_INPUT
# echo " ../../bindings/pyroot/ \\" >> Doxyfile_INPUT
# echo " ../../bindings/r/ \\" >> Doxyfile_INPUT
Expand Down

0 comments on commit e1709c2

Please sign in to comment.