From 5513826c2bf7b34b622669c47963ba66dd0f73b2 Mon Sep 17 00:00:00 2001 From: WillLillis Date: Sun, 1 Sep 2024 00:14:27 -0400 Subject: [PATCH] fix(CI): Disable windows workflow, patch other workflows --- .github/workflows/release.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e9614b5..da34aebd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,15 +30,22 @@ jobs: os: macos-latest - target: aarch64-apple-darwin os: macos-latest - - target: x86_64-pc-windows-msvc - os: windows-latest + # - target: x86_64-pc-windows-msvc + # os: windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 + + # Install dependencies on Linux + - name: Install dependencies on Linux + if: startsWith(matrix.target, 'x86_64-unknown-linux') || startsWith(matrix.target, 'aarch64-unknown-linux') + run: sudo apt-get update && sudo apt-get install -y make + + # Upload Rust binaries - uses: taiki-e/upload-rust-binary-action@v1 with: bin: asm-lsp target: ${{ matrix.target }} tar: unix - zip: windows + # zip: windows token: ${{ secrets.GITHUB_TOKEN }}