Godley / MuseParse

Repository for a python music parser. This works with MusicXML as the input format which forms a tree of objects in memory representing the piece. This can be optionally outputted to lilypond which produces a PDF, or perused for your own uses.
MIT License
6 stars 2 forks source link

CI for windows #35

Open Godley opened 8 years ago

Godley commented 8 years ago

Get this working with app veyor. Problem is finding how to have appveyor install lilypond and wait for it to finish

noteflakes commented 8 years ago

For what it's worth you can run the installer unattended by adding the /S argument. Here's the relevant NSIS doc.

The only problem is that this will run the installer in the background. You can loop while waiting for the lilypond.exe file to be available. I used this technique in lyp. See here:

https://github.com/noteflakes/lyp/blob/master/lib/lyp/lilypond.rb#L413-L432