Skip to content

Commit

Permalink
ci: use recursive xmllint (#80)
Browse files Browse the repository at this point in the history
There are some ill-formed xml files that are not caught in the `compact/` tree. That is because we are currently only checking `compact/*.xml` and files are at a deeper level.
  • Loading branch information
wdconinc authored Aug 26, 2022
1 parent d6331a9 commit 2db1f7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-eic-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
xmllint compact/*.xml > /dev/null
find compact/ -name "*.xml" -exec xmllint {} \; > /dev/null
build-test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
xmllint install/share/ecce/*.xml > /dev/null
find install/share -name "*.xml" -exec xmllint {} \; > /dev/null
convert-to-gdml:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion compact/unused/tracking_config_mgpds.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
This configuration needs attention!
</documentation>

<include ref="rwell_tracker_barrel.xml">
<include ref="rwell_tracker_barrel.xml"/>
<!--include ref="compact/ce_GEM.xml"/-->
<!--include ref="compact/mm_tracker_barrel.xml"/-->
<!--include ref="compact/cb_VTX_Barrel.xml"/-->
Expand Down

0 comments on commit 2db1f7f

Please sign in to comment.