added dependencies to workflow

This commit is contained in:
WanderingPenwing 2024-07-22 21:50:43 +02:00
parent ff3bc9c8aa
commit bd1c2112f5

View file

@ -40,6 +40,19 @@ jobs:
- name: Install target - name: Install target
run: rustup target add ${{ matrix.target }} run: rustup target add ${{ matrix.target }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libxkbcommon-x11-0 libglib2.0-dev libgl1-mesa-dev libglu1-mesa-dev libatk1.0-dev libgdk-pixbuf2.0-dev libwebkit2gtk-4.0-dev libgtk-3-dev
- name: Verify installed dependencies
run: |
ldconfig -p | grep xkbcommon
ldconfig -p | grep libGL
ldconfig -p | grep libGLU
ldconfig -p | grep libatk-1.0.so.0
ldconfig -p | grep libgdk_pixbuf-2.0.so.0
ldconfig -p | grep libwebkit2gtk-4.0.so.37
ldconfig -p | grep libgtk-3.so.0
- name: Compile the app - name: Compile the app
run: | run: |
echo "Compiling for target: ${{ matrix.target }}" echo "Compiling for target: ${{ matrix.target }}"