Broken workflow for Linux #5

Closed
opened 2026-03-17 07:18:40 +02:00 by WindSamurai · 1 comment

The Linux workflow is missing cmake and clang in the installer and kept giving errors.

Changing this in the cmake-multiplatform.yml workflow solved that for me, i added cmake and clang.

    - name: Setup Environment
      if: ${{ matrix.os == 'ubuntu-latest' }}
      run: |
        sudo apt-get update -qq
        sudo apt-get install gcc-multilib -y
        sudo apt-get install -y --no-install-recommends cmake clang build-essential libgl-dev libwayland-dev xorg-dev libxkbcommon-dev
    
The Linux workflow is missing cmake and clang in the installer and kept giving errors. Changing this in the `cmake-multiplatform.yml` workflow solved that for me, i added cmake and clang. ``` - name: Setup Environment if: ${{ matrix.os == 'ubuntu-latest' }} run: | sudo apt-get update -qq sudo apt-get install gcc-multilib -y sudo apt-get install -y --no-install-recommends cmake clang build-essential libgl-dev libwayland-dev xorg-dev libxkbcommon-dev ```
Owner

Workflow fully rewritten so works right now

Workflow fully rewritten so works right now
Sign in to join this conversation.
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Kolyah35/minecraft-pe-0.6.1#5