I got a cross platform application using a wxWidgets gui and want to test the cross build with github ci pipeline. The Linux test runs fine as i'm able to install the wxWidgets dependencies using apt-get. But i got no idea how to setup the wxWidgets Windows dependencies. Google didn't help me either. any suggestions what command i need to put into my yml-file?
thanks!
edit: what i've tried so far...
- name: install wxwidgets
shell: powershell
run: |
choco install wxwidgets
but this is the same like cloning the git version, only with an older version and
run: |
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
bootstrap-vcpkg.bat
vcpkg integrate install
vcpkg install wxwidgets
the pipeline keeps hanging while installing vcpkg