From f4fda91e051923be7380a629e5074efaa0af1d12 Mon Sep 17 00:00:00 2001 From: Fernando Ferreira Date: Wed, 18 Jan 2023 23:50:58 +0000 Subject: [PATCH] Remove Linux compilation from build --- .github/workflows/build.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a867b4..1a18db7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,27 +13,12 @@ jobs: fail-fast: false matrix: config: - - { os: 'Linux', target: 'x86_64-unknown-linux-musl', packages: 'pkg-config librust-alsa-sys-dev' } - { os: 'Windows', target: 'x86_64-pc-windows-gnu' } env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout uses: actions/checkout@master - - name: Install packages (Linux) - if: matrix.config.os == 'Linux' - run: | - sudo apt-get update - sudo apt-get -yq --no-install-suggests --no-install-recommends install ${{ matrix.config.packages }} - - name: Set ALSA_PATH - if: matrix.config.os == 'Linux' - run: echo "ALSA_PATH=$(find /usr/lib -name 'alsa.pc')" >> $GITHUB_ENV - - name: Set PKG_CONFIG_LIBDIR - if: matrix.config.os == 'Linux' - run: echo "PKG_CONFIG_LIBDIR=$(dirname $ALSA_PATH)" >> $GITHUB_ENV - - name: Check PKG_CONFIG_LIBDIR - if: matrix.config.os == 'Linux' - run: echo $PKG_CONFIG_LIBDIR - name: Compile and Release id: compile uses: rust-build/rust-build.action@v1.4.0