From 40b6277425fe5df8c6cb3b4df19fe78ea2b58a76 Mon Sep 17 00:00:00 2001 From: talwat <83217276+talwat@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:54:16 +0200 Subject: [PATCH] ci: readd linux --- .github/workflows/build.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bedda05..a7f6c69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,19 +12,19 @@ jobs: strategy: matrix: include: - # - release_for: Linux x86_64 - # os: ubuntu-latest - # target: x86_64-unknown-linux-gnu - # bin: lowfi - # name: lowfi-linux-x86_64 - # command: build + - release_for: Linux x86_64 + os: ubuntu-latest + target: x86_64-unknown-linux-gnu + bin: lowfi + name: lowfi-linux-x86_64 + command: build - # - release_for: Linux aarch64 - # os: ubuntu-latest - # target: aarch64-unknown-linux-gnu - # bin: lowfi - # name: lowfi-linux-aarch64 - # command: build + - release_for: Linux aarch64 + os: ubuntu-latest + target: aarch64-unknown-linux-gnu + bin: lowfi + name: lowfi-linux-aarch64 + command: build - release_for: Windows x86_64 os: windows-latest @@ -59,7 +59,7 @@ jobs: - name: Install dependencies if: matrix.os == 'ubuntu-latest' run: | - sudo apt install -y libasound2-dev + sudo apt install -y libasound2-dev librust-alsa-sys-dev - name: Build binary uses: houseabsolute/actions-rust-cross@v0