Fix Linux build not installing mold & clang

This commit is contained in:
csd4ni3l
2026-01-23 18:21:51 +01:00
parent b539327672
commit 4b74e211f6

View File

@@ -27,6 +27,13 @@ jobs:
target target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install mold & clang (Linux)
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt update
sudo apt install mold clang build-essential -y
shell: bash
- name: Build - name: Build
run: cargo build --release --verbose run: cargo build --release --verbose