Skip to content

Commit

Permalink
fix: Ignore failures to set up ParserDetails.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
abensonca committed Oct 18, 2024
1 parent 9075d39 commit da106bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/buildMacOS/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ runs:
if [[ "${OS_VER}" -ge 12 ]]; then
# For OS versions 12 and above we need to ensure that the ParserDetails.ini is set up.
sudo perl -MXML::SAX -e "XML::SAX->add_parser('XML::SAX::PurePerl')->save_parsers()" || true
sudo perl -MXML::SAX -e "XML::SAX->add_parser('XML::LibXML::SAX::Parser')->save_parsers()"
sudo perl -MXML::SAX -e "XML::SAX->add_parser('XML::LibXML::SAX')->save_parsers()"
sudo perl -MXML::SAX -e "XML::SAX->add_parser('XML::LibXML::SAX::Parser')->save_parsers()" || true
sudo perl -MXML::SAX -e "XML::SAX->add_parser('XML::LibXML::SAX')->save_parsers()" || true
fi
sudo perl -MCPAN -e 'force("install","XML::SAX::ParserFactory")'
sudo perl -MCPAN -e 'force("install","XML::Validator::Schema")'
Expand Down

0 comments on commit da106bf

Please sign in to comment.